Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Source/cons.f90
Original file line number Diff line number Diff line change
Expand Up @@ -467,9 +467,9 @@ MODULE GLOBAL_CONSTANTS
REAL(EB) :: RTE_SOURCE_CORRECTION_FACTOR=1._EB !< Multiplicative factor used in correcting RTE source term
REAL(EB) :: RAD_Q_SUM=0._EB !< \f$ \sum_{ijk} \left( \chi_{\rm r} \dot{q}_{ijk}''' + \kappa_{ijk} U_{ijk} \right) V_{ijk} \f$
REAL(EB) :: KFST4_SUM=0._EB !< \f$ \sum_{ijk} 4 \kappa_{ijk} \sigma T_{ijk}^4 V_{ijk} \f$
REAL(EB) :: QR_CLIP !< Lower bound of \f$ \chi_{\rm r} \dot{q}_{ijk}''' \f$ below which no source correction is made
REAL(EB) :: QR_CLIP=10._EB !< Lower bound of \f$ \chi_{\rm r} \dot{q}_{ijk}''' \f$ below which no source correction is made
REAL(EB) :: C_MAX=100._EB !< Maximum value of RAD_Q_SUM/KFST4_SUM
REAL(EB) :: C_MIN=1._EB !< Minimum value of RAD_Q_SUM/KFST4_SUM
REAL(EB) :: C_MIN=0.1_EB !< Minimum value of RAD_Q_SUM/KFST4_SUM

! Ramping parameters

Expand Down
3 changes: 1 addition & 2 deletions Source/read.f90
Original file line number Diff line number Diff line change
Expand Up @@ -9851,7 +9851,6 @@ SUBROUTINE READ_RADI
MIE_MAXIMUM_DIAMETER = 0._EB
MIE_MINIMUM_DIAMETER = 0._EB
MIE_NDG = 50
QR_CLIP = 10._EB ! kW/m3, lower bound for radiation source correction
OPTICALLY_THIN = .FALSE.

! Read radiation parameters
Expand Down Expand Up @@ -12519,7 +12518,7 @@ SUBROUTINE READ_INIT

ELSE

! Use information from DEVC line to create an INIT line for 'RADIATIVE HEAT FLUX GAS', 'ADIABATIC SURFACE TEMPERATURE GAS', etc.
! Use information from DEVC line to create an INIT for 'RADIATIVE HEAT FLUX GAS', 'ADIABATIC SURFACE TEMPERATURE GAS', etc.

CALL SET_INIT_DEFAULTS
DV => DEVICE(INIT_RESERVED(N-N_INIT_READ)%DEVC_INDEX) ! First device in the line of POINTS
Expand Down
Loading