svMultiPhysics
Loading...
Searching...
No Matches
pic.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 PIC_H
7#define PIC_H
8
9namespace pic {
10
11void picc(Simulation* simulation);
12
13void pic_eth(Simulation* simulation);
14
15void pici(Simulation* simulation, Array<double>& Ag, Array<double>& Yg, Array<double>& Dg);
16
17void picp(Simulation* simulation);
18
19};
20
21#endif
22
Definition Simulation.h:14