Skip to content

Commit 201d65a

Browse files
committed
FDS Source: add error code for impinging jet model
1 parent 771a14b commit 201d65a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Manuals/FDS_User_Guide/FDS_User_Guide.tex

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14029,6 +14029,7 @@ \chapter{Error Codes}
1402914029
374 \> \ct{Numerical Instability - FDS stopped. } \> Section~\ref{info:Errors} \\
1403014030
375 \> \ct{OBST ... is VARIABLE_THICKNESS or HT3D and needs a MATL_ID. } \> Section~\ref{info:HT3D_Limitations} \\
1403114031
376 \> \ct{Meshes must have the same y/z bounds for TUNNEL_PRECONDITIONER. } \> Section~\ref{tunnel_solver} \\
14032+
377 \> \ct{SURF ... IMPINGING JET model requires ... } \> Section~\ref{info:impinging_jet} \\
1403214033
\> \> \\
1403314034
381 \> \ct{Need more spectral band limits. } \> Section~\ref{info:RADI_Wide_Band} \\
1403414035
382 \> \ct{Spectral band limits should be given in ascending order. } \> Section~\ref{info:RADI_Wide_Band} \\

Source/read.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8326,7 +8326,7 @@ SUBROUTINE READ_SURF(QUICK_READ)
83268326

83278327
IF (SF%HEAT_TRANSFER_MODEL==IMPINGING_JET_HTC_MODEL .AND. &
83288328
(HEAT_TRANSFER_COEFFICIENT<0._EB .OR. HEAT_TRANSFER_COEFFICIENT_SIGMA<0._EB .OR. ANY(XYZ < -1.E5_EB)) ) THEN
8329-
WRITE(MESSAGE,'(A,A,A)') 'ERROR(XXX): SURF ',TRIM(SF%ID), &
8329+
WRITE(MESSAGE,'(A,A,A)') 'ERROR(377): SURF ',TRIM(SF%ID), &
83308330
' IMPINGING JET model requires XYZ(1:3), HEAT_TRANSFER_COEFFICIENT, and HEAT_TRANSFER_COEFFICIENT_SIGMA.'
83318331
CALL SHUTDOWN(MESSAGE) ; RETURN
83328332
ENDIF

0 commit comments

Comments
 (0)