We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents df85abb + b1d69ed commit 6059947Copy full SHA for 6059947
Utilities/Python/scripts/Memorial_Tunnel.py
@@ -340,7 +340,7 @@ def __init__(self):
340
x_min=0, x_max=16, y_min=0, y_max=400,
341
revision_label=version_string,
342
x_label='Number of Fans',
343
- y_label='Volume Flow (m$^3$/s)')
+ y_label='Volume Flow (m³/s)')
344
fdsplotlib.plot_to_fig(x_data=M.data[mod_time_index,0]/300, y_data=M.data[mod_time_index,1],
345
marker_style='ko-', marker_fill_color='none', data_label='FDS', figure_handle=fig)
346
Utilities/Python/scripts/NIST_NRC_Parallel_Panels.py
@@ -83,7 +83,7 @@ def __init__(self):
83
fig = fdsplotlib.plot_to_fig(x_data=[-1,-1], y_data=[-1,-1],
84
x_min=0, x_max=150, y_min=0, y_max=250,
85
86
- x_label='Heat Flux (kW/m$^2$)',
+ x_label='Heat Flux (kW/m²)',
87
y_label='Height (cm)')
88
89
qdot = {}
@@ -136,7 +136,7 @@ def __init__(self):
136
137
x_min=0, x_max=80, y_min=0, y_max=180,
138
139
140
141
142
# Plot experimental data
Utilities/Python/scripts/Sandia_Plumes.py
@@ -70,7 +70,7 @@
70
plot_title='Sandia Methane Pool Fire, Test 17',
71
plot_type='loglog',
72
x_label='Frequency (Hz)',
73
- y_label='Autospectral Density (m$^2$/s)')
+ y_label='Autospectral Density (m²/s)')
74
75
# Find peak frequency
76
k_fds = np.where(pave[k-1].real == np.max(pave[k-1].real))[0]
Utilities/Python/scripts/Sandia_Pools.py
@@ -29,8 +29,8 @@
29
plot_origin=(plot_style['Scat_Plot_X'],plot_style['Scat_Plot_Y']),
30
legend_location='upper left',
31
32
- x_label='Measured Heat Flux (kW/m$^2$)',
33
- y_label='Predicted Heat Flux (kW/m$^2$)'
+ x_label='Measured Heat Flux (kW/m²)',
+ y_label='Predicted Heat Flux (kW/m²)'
34
)
35
36
for i in range(4):
Utilities/Python/scripts/compression_wave.py
@@ -123,8 +123,7 @@ def clog(real_expr):
123
x_min=0, x_max=12.5, y_min=0, y_max=8,
124
125
x_label='Time (s)',
126
- y_label=r'Density (kg/m$^3$)',
127
- usetex=True)
+ y_label='Density (kg/m³)')
128
129
fdsplotlib.plot_to_fig(x_data=t_FL4_16, y_data=rho_fds_FL4_16, marker_style='c--', data_label=r'FDS $N=16$', figure_handle=fig)
130
fdsplotlib.plot_to_fig(x_data=t_FL4_32, y_data=rho_fds_FL4_32, marker_style='g--', data_label=r'FDS $N=32$', figure_handle=fig)
@@ -146,8 +145,7 @@ def clog(real_expr):
146
145
147
148
x_label='Grid Spacing (m)',
149
- y_label=r'L2 Error (kg/m$^3$)',
150
+ y_label='L2 Error (kg/m³)')
151
152
fdsplotlib.plot_to_fig(x_data=h, y_data=0.1*h**2, marker_style='k-', data_label=r'${\cal O}(\delta x^2)$', figure_handle=fig)
153
fdsplotlib.plot_to_fig(x_data=h, y_data=e_FL0, marker_style='b*-', data_label='Central', figure_handle=fig)
Utilities/Python/scripts/fan_curve.py
@@ -30,7 +30,7 @@
fig = fdsplotlib.plot_to_fig(x_data=[vdot1,vdot1], y_data=[-1000,1000], marker_style='r-', data_label='constant volume',
x_min=-10, x_max=20, y_min=-1000, y_max=1000,
- x_label='Volume Flow Rate (m$^3$/s)',
+ x_label='Volume Flow Rate (m³/s)',
y_label='Static Pressure (Pa)')
fdsplotlib.plot_to_fig(x_data=vdot, y_data=dp, marker_style='k-', data_label='quadratic', figure_handle=fig)
Utilities/Python/scripts/plate_view_factor.py
@@ -63,7 +63,7 @@
63
64
plot_title=r'Radiative Heat Flux (plate_view_factor)',
65
x_label='Number of Radiation Angles',
66
- y_label='Heat Flux (kW/m$^2$)')
+ y_label='Heat Flux (kW/m²)')
67
68
fdsplotlib.plot_to_fig(x_data=NRA, y_data=Exact_Flux_2D*np.ones(3), marker_style='r-', figure_handle=fig)
69
fdsplotlib.plot_to_fig(x_data=NRA, y_data=Flux_2D , marker_style='ro', data_label='FDS 2D', figure_handle=fig)
Utilities/Python/scripts/pulsating.py
@@ -118,7 +118,7 @@ def section2_soln(rho0, x, y, B, w, t):
118
x_min=0, x_max=12.5, y_min=0, y_max=2,
119
120
121
- y_label='Density (kg/m$^3$)')
122
fdsplotlib.plot_to_fig(x_data=t_FL2_16, y_data=rho_fds_FL2_16, marker_style='c--', data_label='FDS $N=16$', figure_handle=fig)
fdsplotlib.plot_to_fig(x_data=t_FL2_32, y_data=rho_fds_FL2_32, marker_style='g--', data_label='FDS $N=32$', figure_handle=fig)
@@ -137,7 +137,7 @@ def section2_soln(rho0, x, y, B, w, t):
- y_label='L$_2$ Error (kg/m$^3$)')
e_FL2 = np.array([error_FL2_16, error_FL2_32, error_FL2_64, error_FL2_128])
143
e_FL4 = np.array([error_FL4_16, error_FL4_32, error_FL4_64, error_FL4_128])
Utilities/Python/scripts/radiating_polygon.py
@@ -57,7 +57,7 @@
57
revision_label=version_string,x_min=0,x_max=1,y_min=20,y_max=160,
58
plot_title = 'Radiative Flux from a Hot Square Plate',
59
data_label='Exact',
60
- y_label='Radiative Heat Flux (kW/m$^2$)',
+ y_label='Radiative Heat Flux (kW/m²)',
61
x_label='Distance from Plate (m)',
62
legend_location='lower left')
Utilities/Python/scripts/radiation_plane_layer.py
@@ -28,7 +28,7 @@
28
fid.write('\\begin{tabular}{|c|c|c|c|c|c|c|} \\hline\n')
fid.write('$\\tau$ & $S(\\tau)$ & \\multicolumn{2}{|c|}{FDS (I=20,J=20)} &\n')
fid.write('\\multicolumn{2}{|c|}{FDS (I=20,J=1)} & FDS (I=150) \\\\ \\cline{3-7}\n')
- fid.write(' & (kW/m$^2$) & 1 band & 6 bands & 1 band & 6 bands & 1 band \\\\ \\hline\\hline\n')
+ fid.write(' & (kW/m²) & 1 band & 6 bands & 1 band & 6 bands & 1 band \\\\ \\hline\\hline\n')
for i in range(6):
fid.write(f'{kappa[i]} & {exact[i]:9.4f} & ')
0 commit comments