Skip to content

Commit a54343b

Browse files
authored
Merge pull request #14999 from drjfloyd/master
FDS Source: Set MAXIMUM_SCALING_HEAT_FLUX
2 parents 48da5af + 144060c commit a54343b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Manuals/FDS_User_Guide/FDS_User_Guide.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2837,7 +2837,7 @@ \subsection{Scaling Pyrolysis (SPyro) Model: Scaled Burning Rate from Cone Data}
28372837
There are other optional parameters which can be used to adjust the model behavior, which are described below.
28382838

28392839
\begin{itemize}
2840-
\item \ct{MAXIMUM_SCALING_HEAT_FLUX} By default the model does not set an upper limit on the predicted heat flux used to scale the test data (Default 100,000 \unit{kW/m^2}).
2840+
\item \ct{MAXIMUM_SCALING_HEAT_FLUX} The upper limit on the predicted heat flux used to scale the test data (Default 1500 \unit{kW/m^2}).
28412841
\item \ct{MINIMUM_SCALING_HEAT_FLUX} By default the model does not set a lower limit on the predicted heat flux used to scale the test data. Setting a lower bound to the flux used for scaling may help the model predictions in some cases such as weakly burning sources on coarse grids which may have poorly resolved heat feedback (Default 0 \unit{kW/m^2}).
28422842
\item \ct{REFERENCE_HEAT_FLUX_TIME_INTERVAL} The instantaneous heat feedback in FDS can vary greatly from time step to time step. In an actual fire the burning rate is tied to the sample temperature, and thermal inertia means the burning rate changes more slowly than then instantaneous flux. This natural smoothing can be approximated by setting a smoothing window using \ct{REFERENCE_HEAT_FLUX_TIME_INTERVAL} in s (Default 1~s).
28432843
\end{itemize}
@@ -13618,7 +13618,7 @@ \section{\texorpdfstring{{\tt SURF}}{SURF} (Surface Properties)}
1361813618
\ct{MASS_TRANSFER_COEFFICIENT} & Real & Section~\ref{info:liquid_fuels} & m/s & \\ \hline
1361913619
\ct{MATL_ID(:,:)} & Char.~Array & Section~\ref{info:solid_pyrolysis} & & \\ \hline
1362013620
\ct{MATL_MASS_FRACTION(:,:)} & Real Array & Section~\ref{info:solid_pyrolysis} & & \\ \hline
13621-
\ct{MAXIMUM_SCALING_HEAT_FLUX} & Real & Section~\ref{info:scaled_burning} & \si{kW/m^2} & \\ \hline
13621+
\ct{MAXIMUM_SCALING_HEAT_FLUX} & Real & Section~\ref{info:scaled_burning} & \si{kW/m^2} & 1500 \\ \hline
1362213622
\ct{MCC_CONVERSION_FACTOR} & Real & Section~\ref{info:TGA_DSC_MCC} & & 1 \\ \hline
1362313623
\ct{MINIMUM_BURNOUT_TIME} & Real & Section~\ref{veg_burnout_time} & s & 1000000 \\ \hline
1362413624
\ct{MINIMUM_LAYER_THICKNESS} & Real & Section~\ref{info:solid_phase_stability} & m & 1.E-4 \\ \hline

Source/read.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9015,7 +9015,7 @@ SUBROUTINE SET_SURF_DEFAULTS
90159015
MATL_MASS_FRACTION = 0._EB
90169016
MATL_MASS_FRACTION(:,1) = 1._EB
90179017
MINIMUM_SCALING_HEAT_FLUX = 0._EB
9018-
MAXIMUM_SCALING_HEAT_FLUX = 1.E9_EB
9018+
MAXIMUM_SCALING_HEAT_FLUX = 1500._EB
90199019
MINIMUM_BURNOUT_TIME = 1.E6_EB
90209020
MINIMUM_LAYER_MASS_FRACTION = 1.E-12_EB
90219021
MINIMUM_LAYER_THICKNESS = -1.E-6_EB ! The absolute value is the default, m

0 commit comments

Comments
 (0)