Skip to content

Commit f14d50a

Browse files
authored
Merge pull request #15713 from mcgratta/master
FDS Validation: Add note to spectral plot
2 parents 457e0d4 + 9cdfbc6 commit f14d50a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Utilities/Python/scripts/NIST_Pool_Fires.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
fuel = ['Acetone','Ethanol','Heptane','Methane','Methanol','Propane 20 kW','Propane 34 kW','Propane 50 kW']
2222
label = ['Acetone','Ethanol','Heptane','Methane','Methanol','Propane_20','Propane_34','Propane_50']
23-
ideal = [2.45,2.41,-1,2.48,2.49,2.22,2.39,2.39]
23+
ideal = [2.45,2.41,2.8,2.48,2.49,2.22,2.39,2.39] # Heptane value based on theory, not measurement.
2424
i = -1
2525

2626
for chid in chids:
@@ -58,5 +58,9 @@
5858
plot_title=fuel[i])
5959
fdsplotlib.plot_to_fig([ideal[i],ideal[i]],[0,100000], marker_style='k--', figure_handle=fig)
6060

61+
if i==2:
62+
ax = plt.gca()
63+
ax.text(0.3, 3000, 'Not measured; theory only')
64+
6165
fig.savefig(pltdir + label[i] + '_frequency_spectrum.pdf', format='pdf')
6266

0 commit comments

Comments
 (0)