28 const std::string& prefix,
29 const libMesh::FEType& fe_type,
30 const unsigned int dim):
36 std::string nm = prefix +
"_rho";
37 _vars[0] = sys.add_variable(nm, fe_type);
39 nm = prefix +
"_rhoux";
40 _vars[1] = sys.add_variable(nm, fe_type);
43 nm = prefix +
"_rhouy";
44 _vars[2] = sys.add_variable(nm, fe_type);
48 nm = prefix +
"_rhouz";
49 _vars[3] = sys.add_variable(nm, fe_type);
53 nm = prefix +
"_rhoe";
54 _vars[dim+1] = sys.add_variable(nm, fe_type);
std::vector< unsigned int > _vars
This class implements a system for solution of nonlinear systems.
ConservativeFluidSystemInitialization(MAST::NonlinearSystem &sys, const std::string &prefix, const libMesh::FEType &fe_type, const unsigned int dim)
virtual ~ConservativeFluidSystemInitialization()