Files
solver/OndselSolver/VelICSolver.h

27 lines
848 B
C++

/***************************************************************************
* Copyright (c) 2023 Ondsel, Inc. *
* *
* This file is part of OndselSolver. *
* *
* See LICENSE file for details about copyright. *
***************************************************************************/
#pragma once
#include "VelSolver.h"
namespace MbD {
class VelICSolver : public VelSolver
{
//IC with fully or under constrained system
//nqsu
public:
void assignEquationNumbers() override;
void run() override;
void runBasic();
int nqsu;
};
}