Skip to content
Merged
Changes from 1 commit
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
10 changes: 8 additions & 2 deletions Source/main.f90
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,10 @@ PROGRAM FDS

INITIALIZATION_PHASE = .FALSE.

IF (UNFREEZE_TIME > 0) FREEZE_VELOCITY=.TRUE.
IF (UNFREEZE_TIME > 0) THEN
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this be UNFREEZE_TIME > 0._EB?

FREEZE_VELOCITY=.TRUE.
SOLID_PHASE_ONLY=.TRUE.
ENDIF

IF (MY_RANK==0 .AND. VERBOSE) CALL VERBOSE_PRINTOUT('Starting the time-stepping')

Expand Down Expand Up @@ -571,7 +574,10 @@ PROGRAM FDS
LO10 = INT(LOG10(REAL(MAX(1,ABS(ICYC)),EB)))
IF (MOD(ICYC,10**LO10)==0 .OR. MOD(ICYC,DIAGNOSTICS_INTERVAL)==0 .OR. (T+DT)>=T_END) DIAGNOSTICS = .TRUE.

IF ((UNFREEZE_TIME > 0).AND.(T>UNFREEZE_TIME)) FREEZE_VELOCITY=.FALSE.
IF ((UNFREEZE_TIME > 0).AND.(T>UNFREEZE_TIME)) THEN
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same here UNFREEZE_TIME > 0._EB

FREEZE_VELOCITY=.FALSE.
SOLID_PHASE_ONLY=.FALSE.
ENDIF

!================================================================================================================================
! Start of Predictor part of time step
Expand Down