19 lines
306 B
C++
19 lines
306 B
C++
#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;
|
|
};
|
|
}
|
|
|