-
Notifications
You must be signed in to change notification settings - Fork 662
FDS Source and FDS_User_Guide Add UNFREEZE_TIME parameter #14413
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Source/main.f90
Outdated
| INITIALIZATION_PHASE = .FALSE. | ||
|
|
||
| IF (UNFREEZE_TIME > 0) FREEZE_VELOCITY=.TRUE. | ||
| IF (UNFREEZE_TIME > 0) THEN |
There was a problem hiding this comment.
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?
Source/main.f90
Outdated
| 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 |
There was a problem hiding this comment.
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
Source/read.f90
Outdated
| MAX_LEAK_PATHS = 200 | ||
| FLUX_LIMITER = 'null' | ||
| LES_FILTER_TYPE = 'null' | ||
| UNFREEZE_TIME = -1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also here -1._EB?
|
Pushed another commit to add the "._EB" to the three locations. |
No description provided.