MCPcopy Create free account
hub / github.com/AMReX-Astro/Castro / Diffusion

Method Diffusion

Source/diffusion/Diffusion.cpp:12–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10using namespace amrex;
11
12Diffusion::Diffusion(Amr* Parent, BCRec* _phys_bc)
13 :
14 parent(Parent),
15 LevelData(MAX_LEV),
16 grids(MAX_LEV),
17 volume(MAX_LEV),
18 area(MAX_LEV),
19 phys_bc(_phys_bc)
20{
21 AMREX_ALWAYS_ASSERT(parent->maxLevel() < MAX_LEV);
22
23 make_mg_bc();
24}
25
26
27void

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected