diff --git a/docs/cluster.md b/docs/cluster.md index 7e650cfa..b4d83983 100644 --- a/docs/cluster.md +++ b/docs/cluster.md @@ -449,7 +449,7 @@ The parameters $\alpha$ and $\ell$ can be changed with ``` potential_type = li -alpha = 20 +li_alpha = 20 l_scale = 0.001 ``` When injected as a fraction of @@ -498,9 +498,9 @@ with all other components being zero. ``` potential_type = donut -l_scale = 0.0005 # in code length -offset = 0.001 # in code length -thickness = 0.0001 # in code length +l_scale = 0.0005 # in code length +donut_offset = 0.001 # in code length +donut_thickness = 0.0001 # in code length ``` It is recommended to match the donut thickness to the thickness of the kinetic jet launching region diff --git a/inputs/cluster/cluster.in b/inputs/cluster/cluster.in index fe1ff02b..e3192524 100644 --- a/inputs/cluster/cluster.in +++ b/inputs/cluster/cluster.in @@ -182,7 +182,7 @@ kinetic_jet_offset = 0.05 potential_type = li -alpha = 20 +li_alpha = 20 l_scale = 0.001 initial_field = 0.12431560000204142 #NOTE: Change to this line to disable initial magnetic tower diff --git a/inputs/cluster/magnetic_tower.in b/inputs/cluster/magnetic_tower.in index 15b5647d..44ba58a0 100644 --- a/inputs/cluster/magnetic_tower.in +++ b/inputs/cluster/magnetic_tower.in @@ -110,7 +110,7 @@ thermal_fraction = 0 potential_type = li -alpha = 20 +li_alpha = 20 l_scale = 0.01 initial_field = 0.12431560000204142 fixed_field_rate = 12.431560000204144 diff --git a/tst/regression/test_suites/cluster_magnetic_tower/cluster_magnetic_tower.py b/tst/regression/test_suites/cluster_magnetic_tower/cluster_magnetic_tower.py index 4da1eeb1..c80ef354 100644 --- a/tst/regression/test_suites/cluster_magnetic_tower/cluster_magnetic_tower.py +++ b/tst/regression/test_suites/cluster_magnetic_tower/cluster_magnetic_tower.py @@ -275,7 +275,7 @@ def Prepare(self, parameters, step): f"problem/cluster/agn_feedback/magnetic_fraction=1", f"problem/cluster/agn_feedback/kinetic_fraction=0", f"problem/cluster/agn_feedback/thermal_fraction=0", - f"problem/cluster/magnetic_tower/alpha={self.magnetic_tower_alpha}", + f"problem/cluster/magnetic_tower/li_alpha={self.magnetic_tower_alpha}", f"problem/cluster/magnetic_tower/l_scale={self.magnetic_tower_l_scale.in_units('code_length').v}", f"problem/cluster/magnetic_tower/initial_field={self.initial_magnetic_tower_field.in_units('sqrt(code_mass)/sqrt(code_length)/code_time').v}", f"problem/cluster/magnetic_tower/fixed_field_rate={fixed_field_rate}",