Skip to content
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

FDS Source: increase LINE length in SEARCH_INPUT_FILE #13178

Merged
merged 1 commit into from
Jul 15, 2024
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
2 changes: 1 addition & 1 deletion Source/func.f90
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ SUBROUTINE SEARCH_INPUT_FILE(LU,TEXT,FOUND)
INTEGER, INTENT(IN) :: LU
LOGICAL, INTENT(OUT) :: FOUND
CHARACTER(*), INTENT(IN) :: TEXT
CHARACTER(180) :: LINE
CHARACTER(NAMELIST_LENGTH) :: LINE
INTEGER :: IND

FOUND = .FALSE.
Expand Down
3 changes: 2 additions & 1 deletion Source/prec.f90
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ MODULE PRECISION_PARAMETERS
INTEGER, PARAMETER :: MESSAGE_LENGTH=200 !< Maximum length of error and warning labels
INTEGER, PARAMETER :: FORMULA_LENGTH=255 !< Maximum length of chemical formulae
INTEGER, PARAMETER :: CHID_LENGTH=50 !< Maximum length of job ID
INTEGER, PARAMETER :: FILE_LENGTH=200 !< Maximum length of filenames ID
INTEGER, PARAMETER :: FILE_LENGTH=200 !< Maximum length of filenames ID
INTEGER, PARAMETER :: NAMELIST_LENGTH=300 !< Maximum length of NAMELIST line in input file (see SEARCH_INPUT_FILE)
INTEGER, PARAMETER :: MESH_STRING_LENGTH=LABEL_LENGTH + 80 !< Length for storage of strings
INTEGER, PARAMETER :: FN_LENGTH=FILE_LENGTH+CHID_LENGTH !< Length for output filename strings (includes output directory)
INTEGER, PARAMETER :: N_OUTPUT_QUANTITIES=600 !< Dimension of array that holds names of output quantities
Expand Down