Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fix directory path max length #194

Merged
Merged
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
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