@@ -2150,7 +2150,7 @@ def plot_main_power_flow(
21502150 (
21512151 f"Plant base load:\n { mfile_data .data ['p_plant_electric_base_total_mw' ].get_scan (scan ):.3f} MWe\n "
21522152 f"Minimum base load:\n { mfile_data .data ['p_plant_electric_base' ].get_scan (scan ) * 1.0e-6 :.3f} MWe\n "
2153- f"Plant floor power density:\n { mfile_data .data ['pflux_plant_floor_electric' ].get_scan (scan ) * 1.0e-3 :.3f} kW/m^2 "
2153+ f"Plant floor power density:\n { mfile_data .data ['pflux_plant_floor_electric' ].get_scan (scan ) * 1.0e-3 :.3f} kW$ \\ text{{m}}^{{-2}}$ "
21542154 ),
21552155 fontsize = 9 ,
21562156 verticalalignment = "bottom" ,
@@ -2501,7 +2501,7 @@ def plot_main_plasma_information(
25012501 f"$\\ mathbf{{Shaping:}}$\n \n "
25022502 f"$\\ kappa_{{95}}$: { mfile_data .data ['kappa95' ].get_scan (scan ):.2f} | $\\ delta_{{95}}$: { mfile_data .data ['triang95' ].get_scan (scan ):.2f} | $\\ zeta$: { mfile_data .data ['plasma_square' ].get_scan (scan ):.2f} \n "
25032503 f"A: { mfile_data .data ['aspect' ].get_scan (scan ):.2f} \n "
2504- f"$ V_{{\\ text{{p}}}}:$ { mfile_data .data ['vol_plasma' ].get_scan (scan ):.2f} $ \\ \\ text{{m}}^3$\n "
2504+ f"$ V_{{\\ text{{p}}}}:$ { mfile_data .data ['vol_plasma' ].get_scan (scan ):, .2f} $ \\ \\ text{{m}}^3$\n "
25052505 f"$ A_{{\\ text{{p,surface}}}}:$ { mfile_data .data ['a_plasma_surface' ].get_scan (scan ):,.2f} $ \\ \\ text{{m}}^2$\n "
25062506 f"$ A_{{\\ text{{p_poloidal}}}}:$ { mfile_data .data ['a_plasma_poloidal' ].get_scan (scan ):,.2f} $ \\ \\ text{{m}}^2$\n "
25072507 f"$ L_{{\\ text{{p_poloidal}}}}:$ { mfile_data .data ['len_plasma_poloidal' ].get_scan (scan ):,.2f} $ \\ \\ text{{m}}$"
@@ -2586,13 +2586,13 @@ def plot_main_plasma_information(
25862586 f"Current driving power { mfile_data .data ['p_hcd_primary_injected_mw' ].get_scan (scan ):.4f} MW\n "
25872587 f"Extra heat power: { mfile_data .data ['p_hcd_primary_extra_heat_mw' ].get_scan (scan ):.4f} MW\n "
25882588 f"$\\ gamma_{{\\ text{{CD,prim}}}}$: { mfile_data .data ['eta_cd_hcd_primary' ].get_scan (scan ):.4f} A/W\n "
2589- f"$\\ eta_{{\\ text{{CD,prim}}}}$: { mfile_data .data ['eta_cd_norm_hcd_primary' ].get_scan (scan ):.2f } $\\ times 10^{{20}} \\ mathrm{{A}} / \\ mathrm{{Wm}}^2$\n "
2589+ f"$\\ eta_{{\\ text{{CD,prim}}}}$: { mfile_data .data ['eta_cd_norm_hcd_primary' ].get_scan (scan ):.4f } $\\ times 10^{{20}} \\ mathrm{{A}} / \\ mathrm{{Wm}}^2$\n "
25902590 f"Current driven by primary: { mfile_data .data ['c_hcd_primary_driven' ].get_scan (scan ) / 1e6 :.3f} MA\n \n "
25912591 f"$\\ mathbf{{Secondary \\ system: { secondary_heating } }}$ \n "
25922592 f"Current driving power { mfile_data .data ['p_hcd_secondary_injected_mw' ].get_scan (scan ):.4f} MW\n "
25932593 f"Extra heat power: { mfile_data .data ['p_hcd_secondary_extra_heat_mw' ].get_scan (scan ):.4f} MW\n "
25942594 f"$\\ gamma_{{\\ text{{CD,sec}}}}$: { mfile_data .data ['eta_cd_hcd_secondary' ].get_scan (scan ):.4f} A/W\n "
2595- f"$\\ eta_{{\\ text{{CD,sec}}}}$: { mfile_data .data ['eta_cd_norm_hcd_secondary' ].get_scan (scan ):.2f } $\\ times 10^{{20}} \\ mathrm{{A}} / \\ mathrm{{Wm}}^2$\n "
2595+ f"$\\ eta_{{\\ text{{CD,sec}}}}$: { mfile_data .data ['eta_cd_norm_hcd_secondary' ].get_scan (scan ):.4f } $\\ times 10^{{20}} \\ mathrm{{A}} / \\ mathrm{{Wm}}^2$\n "
25962596 f"Current driven by secondary: { mfile_data .data ['c_hcd_secondary_driven' ].get_scan (scan ) / 1e6 :.3f} MA\n "
25972597 )
25982598
@@ -11933,7 +11933,7 @@ def plot_plasma_outboard_toroidal_ripple_map(
1193311933 # Determine a sensible integer range of TF coils to scan around nominal
1193411934 n_nom = int (n_tf_coils )
1193511935 span = max (2 , int (min (12 , n_nom // 2 ))) # choose a span based on nominal
11936- n_min = max (12 , n_nom - span )
11936+ n_min = max (10 , n_nom - span )
1193711937 n_max = n_nom + span
1193811938 n_vals = np .arange (n_min , n_max + 1 , dtype = int )
1193911939
0 commit comments