WARPXM v1.10.0
|
Variables | |
str | torder = 'RK4' |
str | sorder = 'thirdOrder' |
float | skin_depth_norm = 1.0 |
int | gamma = 5./3. |
int | z_i = 1 |
int | A_i = 1 |
int | theta = 1 |
bool | useLimiter = True |
float | limiter_alpha_coefficient = 500.0 |
bool | fixed_dt = False |
str | verbosity = 'debug' |
str | imhd_numerical_flux_type = "HLLD" |
float | penalty_beta = -0.5 |
float | penalty_eta = 0.0 |
warpy | mesh |
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 | briowu_ic = warpy.functions.briowu_mhd(name='briowu_ic',gamma=gamma) |
list | ic_applicators = [warpy.applicator(spatial_order=sorder,fun=briowu_ic,var=fluid,components=None,spatial_scheme='Nodal')] |
list | apps = [] |
list | bc_apps_dirichlet = [] |
list | rho = [1.0,0.125] |
list | px = [0.0,0.0] |
list | py = [0.0,0.0] |
list | pz = [0.0,0.0] |
list | Bx = [0.75, 0.75] |
list | By = [1.0, -1.0] |
list | Bz = [0.0, 0.0] |
list | pressure = [1.0,0.1] |
list | e = [0,0] |
list | bc_apps_neumann = [] |
list | limiter_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, penalty_beta=penalty_beta, penalty_eta=penalty_eta, on_subdomains=['all']) |
list | variable_adjusters = [] |
warpy | ti = warpy.host_actions.erk(name="rk", scheme=torder, spatial_solvers=[spatial_solver], variable_adjusters=variable_adjusters) |
float | dt = 1.0e-9 |
warpy | dt_controller = warpy.dt_calc.stability_dt(init_dt=dt) |
warpy | sim |
gen_xdmf | |
True | |
detect_nonscalar | |
int examples.dg.mhd.brio_wu_shocktube_hall.A_i = 1 |
list examples.dg.mhd.brio_wu_shocktube_hall.apps = [] |
list examples.dg.mhd.brio_wu_shocktube_hall.bc_apps_dirichlet = [] |
list examples.dg.mhd.brio_wu_shocktube_hall.bc_apps_neumann = [] |
warpy examples.dg.mhd.brio_wu_shocktube_hall.briowu_ic = warpy.functions.briowu_mhd(name='briowu_ic',gamma=gamma) |
list examples.dg.mhd.brio_wu_shocktube_hall.Bx = [0.75, 0.75] |
list examples.dg.mhd.brio_wu_shocktube_hall.By = [1.0, -1.0] |
list examples.dg.mhd.brio_wu_shocktube_hall.Bz = [0.0, 0.0] |
list examples.dg.mhd.brio_wu_shocktube_hall.component_names = ['rho', 'px', 'py', 'pz', 'e', 'Bx', 'By', 'Bz'] |
examples.dg.mhd.brio_wu_shocktube_hall.detect_nonscalar |
float examples.dg.mhd.brio_wu_shocktube_hall.dt = 1.0e-9 |
warpy examples.dg.mhd.brio_wu_shocktube_hall.dt_controller = warpy.dt_calc.stability_dt(init_dt=dt) |
list examples.dg.mhd.brio_wu_shocktube_hall.e = [0,0] |
bool examples.dg.mhd.brio_wu_shocktube_hall.fixed_dt = False |
warpy examples.dg.mhd.brio_wu_shocktube_hall.fluid = warpy.variable(name='fluid',components=component_names,basis_array_set=sorder) |
warpy examples.dg.mhd.brio_wu_shocktube_hall.fluid_gradient = warpy.variable(name='fluid_gradient', components=gradient_component_names,basis_array_set=sorder) |
int examples.dg.mhd.brio_wu_shocktube_hall.gamma = 5./3. |
examples.dg.mhd.brio_wu_shocktube_hall.gen_xdmf |
list examples.dg.mhd.brio_wu_shocktube_hall.gradient_component_names = [prefix+"_"+suffix for prefix in component_names for suffix in ['x','y','z']] |
list examples.dg.mhd.brio_wu_shocktube_hall.ic_applicators = [warpy.applicator(spatial_order=sorder,fun=briowu_ic,var=fluid,components=None,spatial_scheme='Nodal')] |
str examples.dg.mhd.brio_wu_shocktube_hall.imhd_numerical_flux_type = "HLLD" |
float examples.dg.mhd.brio_wu_shocktube_hall.limiter_alpha_coefficient = 500.0 |
list examples.dg.mhd.brio_wu_shocktube_hall.limiter_apps = [] |
warpy examples.dg.mhd.brio_wu_shocktube_hall.mesh |
float examples.dg.mhd.brio_wu_shocktube_hall.penalty_beta = -0.5 |
float examples.dg.mhd.brio_wu_shocktube_hall.penalty_eta = 0.0 |
list examples.dg.mhd.brio_wu_shocktube_hall.pressure = [1.0,0.1] |
list examples.dg.mhd.brio_wu_shocktube_hall.px = [0.0,0.0] |
list examples.dg.mhd.brio_wu_shocktube_hall.py = [0.0,0.0] |
list examples.dg.mhd.brio_wu_shocktube_hall.pz = [0.0,0.0] |
list examples.dg.mhd.brio_wu_shocktube_hall.rho = [1.0,0.125] |
warpy examples.dg.mhd.brio_wu_shocktube_hall.sim |
float examples.dg.mhd.brio_wu_shocktube_hall.skin_depth_norm = 1.0 |
str examples.dg.mhd.brio_wu_shocktube_hall.sorder = 'thirdOrder' |
warpy examples.dg.mhd.brio_wu_shocktube_hall.spatial_solver = warpy.spatial_solvers.dg(name="dg", spatial_order=sorder, applications=apps, penalty_beta=penalty_beta, penalty_eta=penalty_eta, on_subdomains=['all']) |
int examples.dg.mhd.brio_wu_shocktube_hall.theta = 1 |
warpy examples.dg.mhd.brio_wu_shocktube_hall.ti = warpy.host_actions.erk(name="rk", scheme=torder, spatial_solvers=[spatial_solver], variable_adjusters=variable_adjusters) |
str examples.dg.mhd.brio_wu_shocktube_hall.torder = 'RK4' |
examples.dg.mhd.brio_wu_shocktube_hall.True |
bool examples.dg.mhd.brio_wu_shocktube_hall.useLimiter = True |
list examples.dg.mhd.brio_wu_shocktube_hall.variable_adjusters = [] |
str examples.dg.mhd.brio_wu_shocktube_hall.verbosity = 'debug' |
warpy examples.dg.mhd.brio_wu_shocktube_hall.writer = warpy.host_actions.writer(name='writer',ReadVars=[fluid, fluid_gradient]) |
int examples.dg.mhd.brio_wu_shocktube_hall.z_i = 1 |