PlasCom2  1.0
XPACC Multi-physics simluation application
Simulation.C
Go to the documentation of this file.
1 #include "Simulation.H"
2 
3 namespace simulation {
4 
5  // namespace domain {
6 
7  // };
8 
9  // int advancer::base::AdvanceDomain(DomainType &inDomain)
10  // {
11  // int numGrids = inDomain.NumberOfGrids();
12  // for(int iGrid = 0;iGrid < numGrids;iGrid++)
13  // {
14  // GridType &domainGrid(inDomain.Grid(iGrid));
15  // StateType &currentState(inDomain.State(iGrid));
16  // StateType stateUpdate;
17  // int updateCode = GetStateUpdate(domainGrid,currentState,stateUpdate);
18  // if(updateCode){
19  // return(updateCode);
20  // }
21  // currentState += stateUpdate;
22  // }
23  // return(0);
24  // };
25 
26 
27 };
28 
29 
30