svMultiPhysics
Loading...
Searching...
No Matches
txt.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 TXT_H
5#define TXT_H
6
7#include "Simulation.h"
8#include "Array.h"
9#include "ComMod.h"
10
11#include "consts.h"
12
13namespace txt_ns {
14
15void create_boundary_integral_file(const ComMod& com_mod, CmMod& cm_mod, const eqType& lEq, const std::string& file_name);
16
17void create_volume_integral_file(const ComMod& com_mod, CmMod& cm_mod, const eqType& lEq, const std::string& file_name);
18
19void txt(Simulation* simulation, const bool flag);
20
21void write_boundary_integral_data(const ComMod& com_mod, CmMod& cm_mod, const eqType& lEq, const int m,
22 const std::string file_name, const Array<double>& tmpV, const bool div, const bool pFlag);
23
24void write_volume_integral_data(const ComMod& com_mod, CmMod& cm_mod, const eqType& lEq, const int m,
25 const std::string file_name, const Array<double>& tmpV, const bool div, const bool pFlag);
26
27};
28
29#endif
30
The CmMod class duplicates the data structures in the Fortran CMMOD module defined in COMU....
Definition CmMod.h:35
The ComMod class duplicates the data structures in the Fortran COMMOD module defined in MOD....
Definition ComMod.h:1514
Definition Simulation.h:14
Equation type.
Definition ComMod.h:1069