svMultiPhysics
Loading...
Searching...
No Matches
ls.h
1// SPDX-FileCopyrightText: Copyright (c) Stanford University, The Regents of the University of California, and others.
2// SPDX-License-Identifier: BSD-3-Clause
3
4#ifndef LS_H
5#define LS_H
6
7#include "ComMod.h"
8#include "Simulation.h"
9
10namespace ls_ns {
11
12void ls_alloc(ComMod& com_mod, eqType& lEq);
13
14void ls_solve(ComMod& com_mod, eqType& lEq, const Vector<int>& incL, const Vector<double>& res);
15
16//void init_dir_and_coupneu_bc_petsc(ComMod& com_mod, const Vector<int>& incL, const Vector<double>& res);
17
18//void initialize_petsc(ComMod& com_mod);
19
20};
21
22#endif
23
The ComMod class duplicates the data structures in the Fortran COMMOD module defined in MOD....
Definition ComMod.h:1514
The Vector template class is used for storing int and double data.
Definition Vector.h:23
Equation type.
Definition ComMod.h:1069