Skip to content

Commit

Permalink
Merge pull request #194 from inoelloc/fix-directory-path-max-length
Browse files Browse the repository at this point in the history
Fix directory path max length
  • Loading branch information
asjeb authored Jun 11, 2024
2 parents c5a28e8 + 62206b1 commit ac0038a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions smash/fcore/derived_type/mwd_setup.f90
Original file line number Diff line number Diff line change
Expand Up @@ -92,30 +92,30 @@ module mwd_setup
logical :: compute_mean_atmos = .true.

logical :: read_qobs = .false.
character(lchar) :: qobs_directory = "..." !$F90W char
character(2*lchar) :: qobs_directory = "..." !$F90W char

logical :: read_prcp = .false.
character(lchar) :: prcp_format = "..." !$F90W char
real(sp) :: prcp_conversion_factor = 1._sp
character(lchar) :: prcp_directory = "..." !$F90W char
character(2*lchar) :: prcp_directory = "..." !$F90W char
character(lchar) :: prcp_access = "..." !$F90W char

logical :: read_pet = .false.
character(lchar) :: pet_format = "..." !$F90W char
real(sp) :: pet_conversion_factor = 1._sp
character(lchar) :: pet_directory = "..." !$F90W char
character(2*lchar) :: pet_directory = "..." !$F90W char
character(lchar) :: pet_access = "..." !$F90W char
logical :: daily_interannual_pet = .false.

logical :: read_snow = .false.
character(lchar) :: snow_format = "..." !$F90W char
real(sp) :: snow_conversion_factor = 1._sp
character(lchar) :: snow_directory = "..." !$F90W char
character(2*lchar) :: snow_directory = "..." !$F90W char
character(lchar) :: snow_access = "..." !$F90W char

logical :: read_temp = .false.
character(lchar) :: temp_format = "..." !$F90W char
character(lchar) :: temp_directory = "..." !$F90W char
character(2*lchar) :: temp_directory = "..." !$F90W char
character(lchar) :: temp_access = "..." !$F90W char

logical :: prcp_partitioning = .false.
Expand All @@ -124,7 +124,7 @@ module mwd_setup

logical :: read_descriptor = .false.
character(lchar) :: descriptor_format = "..." !$F90W char
character(lchar) :: descriptor_directory = "..." !$F90W char
character(2*lchar) :: descriptor_directory = "..." !$F90W char
character(20), allocatable, dimension(:) :: descriptor_name !$F90W char-array

! Post processed variables
Expand Down

0 comments on commit ac0038a

Please sign in to comment.