Files
solver/OndselSolver/ConstantGravity.cpp
2023-11-14 09:33:24 -07:00

21 lines
798 B
C++

/***************************************************************************
* Copyright (c) 2023 Ondsel, Inc. *
* *
* This file is part of OndselSolver. *
* *
* See LICENSE file for details about copyright. *
***************************************************************************/
#include "ConstantGravity.h"
#include "System.h"
#include "Part.h"
using namespace MbD;
void MbD::ConstantGravity::fillAccICIterError(FColDsptr col)
{
for (auto& part : *(root()->parts)) {
col->atiplusFullColumntimes(part->iqX(), gXYZ, part->m);
}
}