BELFEM 0.9.0
Berkeley Lab Finite Element Framework
Loading...
Searching...
No Matches
mt_maxwell_phi.hpp
Go to the documentation of this file.
1//
2// Created by christian on 9/19/24.
3//
4
5#ifndef MT_MAXWELL_PHI_HPP
6#define MT_MAXWELL_PHI_HPP
7
8#include "typedefs.hpp"
9#include "cl_Vector.hpp"
10#include "cl_Matrix.hpp"
11#include "cl_FEM_Calculator.hpp"
13
14
15namespace belfem
16{
17 namespace fem
18 {
19 namespace maxwell
20 {
21 void
22 phi( Calculator * aCalc, TimestepMatrices * aMatrices );
23
24 void
25 phi_ferro_picard( Calculator * aCalc, TimestepMatrices * aMatrices );
26
27 void
28 phi_ferro_newton( Calculator * aCalc, TimestepMatrices * aMatrices );
29
30 void
31 phi_tri3( Calculator * aCalc, TimestepMatrices * aMatrices );
32
33 void
34 phi_tet4( Calculator * aCalc, TimestepMatrices * aMatrices );
35
36 void
37 phi_tri6_tet10( Calculator * aCalc, TimestepMatrices * aMatrices );
38 }
39 }
40}
41
42#endif //MT_MAXWELL_PHI_HPP
Definition cl_EF_PENTA6TS.hpp:23
void phi_tri6_tet10(Calculator *aCalc, TimestepMatrices *aMatrices)
Definition mt_maxwell_phi.cpp:174
void phi_ferro_newton(Calculator *aCalc, TimestepMatrices *aMatrices)
Definition mt_maxwell_phi.cpp:81
void phi(Calculator *aCalc, TimestepMatrices *aMatrices)
Definition mt_maxwell_phi.cpp:27
void phi_ferro_picard(Calculator *aCalc, TimestepMatrices *aMatrices)
Definition mt_maxwell_phi.cpp:51
void phi_tri3(Calculator *aCalc, TimestepMatrices *aMatrices)
Definition mt_maxwell_phi.cpp:150
void phi_tet4(Calculator *aCalc, TimestepMatrices *aMatrices)
Definition mt_maxwell_phi.cpp:162
Definition cl_IFB_LINE3.hpp:21
USER GUIDES:
Definition cl_Capacitor.cpp:16