WARPXM v1.10.0
|
Variables | |
str | torder = 'RK4' |
str | sorder = 'secondOrder' |
bool | useLimiter = True |
bool | always_limit = True |
float | skin_depth_norm = 1.0 |
int | gamma = 5./3. |
int | z_i = 1 |
int | A_i = 1 |
int | theta = 1 |
int | di_L = 1. |
int | Lx = 8*math.pi*di_L |
int | Ly = 4*math.pi*di_L |
float | sheet_width = 0.5 |
float | n0 = 1.0 |
float | n_inf = 0.2 |
float | B0 = 1.0 |
float | Ti_Te = 1.0/theta |
tuple | Te = (di_L / skin_depth_norm * B0)**2 / (2 * (n0-n_inf) * (1 + Ti_Te)) |
list | T = [Ti_Te * Te, Te] |
int | v = 2. * skin_depth_norm / (sheet_width * B0) |
list | V = T[0]*v |
warpy | mesh = warpy.mesh.block(Bounds=[-Lx/2.,Lx/2., -Ly/2.,Ly/2.],NumCells=[32,16],NodeSets=['Left','Right', 'Lower','Upper'],NumLayers=1,basis_array_set=sorder,PeriodicBoundaries=['Left','Right']) |
list | component_names = ['rho', 'px', 'py', 'pz', 'e', 'Bx', 'By', 'Bz'] |
warpy | fluid = warpy.variable(name='fluid',components=component_names,basis_array_set=sorder) |
list | gradient_component_names = [prefix+"_"+suffix for prefix in component_names for suffix in ['x','y','z']] |
warpy | fluid_gradient = warpy.variable(name='fluid_gradient', components=gradient_component_names,basis_array_set=sorder) |
warpy | gem_ic = warpy.functions.gem_hallmhd(name='gem_ic',gamma=gamma,mass=A_i,temperature=T[0],velocity=V,sheet_width=sheet_width,number_density=n0,number_density_infinity=n_inf,Bx=B0,Lx=Lx,Ly=Ly) |
list | applicators = [warpy.applicator(spatial_order=sorder,fun=gem_ic,var=fluid,spatial_scheme='Nodal')] |
list | apps = [] |
list | dirichlet_apps = [] |
list | neumann_apps = [] |
warpy | writer = warpy.host_actions.writer(name='writer',ReadVars=[fluid, fluid_gradient]) |
warpy | spatial_solver = warpy.spatial_solvers.dg(name="dg", spatial_order=sorder, applications=apps, on_subdomains=['all']) |
list | variable_adjusters = [] |
warpy | ti = warpy.host_actions.erk(name="rk", scheme=torder, spatial_solvers=[spatial_solver], variable_adjusters=variable_adjusters) |
warpy | dt_controller = warpy.dt_calc.stability_dt(init_dt=1e-5) |
warpy | sim |
gen_xdmf | |
True | |
detect_nonscalar | |
int examples.dg.mhd.gem_challenge_hall.A_i = 1 |
bool examples.dg.mhd.gem_challenge_hall.always_limit = True |
list examples.dg.mhd.gem_challenge_hall.applicators = [warpy.applicator(spatial_order=sorder,fun=gem_ic,var=fluid,spatial_scheme='Nodal')] |
list examples.dg.mhd.gem_challenge_hall.apps = [] |
float examples.dg.mhd.gem_challenge_hall.B0 = 1.0 |
list examples.dg.mhd.gem_challenge_hall.component_names = ['rho', 'px', 'py', 'pz', 'e', 'Bx', 'By', 'Bz'] |
examples.dg.mhd.gem_challenge_hall.detect_nonscalar |
int examples.dg.mhd.gem_challenge_hall.di_L = 1. |
list examples.dg.mhd.gem_challenge_hall.dirichlet_apps = [] |
warpy examples.dg.mhd.gem_challenge_hall.dt_controller = warpy.dt_calc.stability_dt(init_dt=1e-5) |
warpy examples.dg.mhd.gem_challenge_hall.fluid = warpy.variable(name='fluid',components=component_names,basis_array_set=sorder) |
warpy examples.dg.mhd.gem_challenge_hall.fluid_gradient = warpy.variable(name='fluid_gradient', components=gradient_component_names,basis_array_set=sorder) |
int examples.dg.mhd.gem_challenge_hall.gamma = 5./3. |
warpy examples.dg.mhd.gem_challenge_hall.gem_ic = warpy.functions.gem_hallmhd(name='gem_ic',gamma=gamma,mass=A_i,temperature=T[0],velocity=V,sheet_width=sheet_width,number_density=n0,number_density_infinity=n_inf,Bx=B0,Lx=Lx,Ly=Ly) |
examples.dg.mhd.gem_challenge_hall.gen_xdmf |
list examples.dg.mhd.gem_challenge_hall.gradient_component_names = [prefix+"_"+suffix for prefix in component_names for suffix in ['x','y','z']] |
int examples.dg.mhd.gem_challenge_hall.Lx = 8*math.pi*di_L |
int examples.dg.mhd.gem_challenge_hall.Ly = 4*math.pi*di_L |
warpy examples.dg.mhd.gem_challenge_hall.mesh = warpy.mesh.block(Bounds=[-Lx/2.,Lx/2., -Ly/2.,Ly/2.],NumCells=[32,16],NodeSets=['Left','Right', 'Lower','Upper'],NumLayers=1,basis_array_set=sorder,PeriodicBoundaries=['Left','Right']) |
float examples.dg.mhd.gem_challenge_hall.n0 = 1.0 |
float examples.dg.mhd.gem_challenge_hall.n_inf = 0.2 |
list examples.dg.mhd.gem_challenge_hall.neumann_apps = [] |
float examples.dg.mhd.gem_challenge_hall.sheet_width = 0.5 |
warpy examples.dg.mhd.gem_challenge_hall.sim |
float examples.dg.mhd.gem_challenge_hall.skin_depth_norm = 1.0 |
str examples.dg.mhd.gem_challenge_hall.sorder = 'secondOrder' |
warpy examples.dg.mhd.gem_challenge_hall.spatial_solver = warpy.spatial_solvers.dg(name="dg", spatial_order=sorder, applications=apps, on_subdomains=['all']) |
tuple examples.dg.mhd.gem_challenge_hall.Te = (di_L / skin_depth_norm * B0)**2 / (2 * (n0-n_inf) * (1 + Ti_Te)) |
int examples.dg.mhd.gem_challenge_hall.theta = 1 |
warpy examples.dg.mhd.gem_challenge_hall.ti = warpy.host_actions.erk(name="rk", scheme=torder, spatial_solvers=[spatial_solver], variable_adjusters=variable_adjusters) |
float examples.dg.mhd.gem_challenge_hall.Ti_Te = 1.0/theta |
str examples.dg.mhd.gem_challenge_hall.torder = 'RK4' |
examples.dg.mhd.gem_challenge_hall.True |
bool examples.dg.mhd.gem_challenge_hall.useLimiter = True |
int examples.dg.mhd.gem_challenge_hall.v = 2. * skin_depth_norm / (sheet_width * B0) |
list examples.dg.mhd.gem_challenge_hall.variable_adjusters = [] |
warpy examples.dg.mhd.gem_challenge_hall.writer = warpy.host_actions.writer(name='writer',ReadVars=[fluid, fluid_gradient]) |
int examples.dg.mhd.gem_challenge_hall.z_i = 1 |