svMultiPhysics
Loading...
Searching...
No Matches
initialize.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#include "Simulation.h"
5
6#ifndef INITIALIZE_H
7#define INITIALIZE_H
8
9void finalize(Simulation* simulation);
10
11void init_from_bin(Simulation* simulation, const std::string& fName, std::array<double,3>& timeP);
12
13void init_from_vtu(Simulation* simulation, const std::string& fName, std::array<double,3>& timeP);
14
15void initialize(Simulation* simulation, Vector<double>& timeP);
16
17void zero_init(Simulation* simulation);
18
19#endif
20
Definition Simulation.h:14
The Vector template class is used for storing int and double data.
Definition Vector.h:23