Hello,
I am currently attempting at extracting the instantaneous inverse density as a timeseries with the TSLIST option. I have been following the guide here :
https://forum.mmm.ucar.edu/phpBB3/viewtopic.php?t=8898
I believe I may be missing something in my own version with this error during compilation ,
================================================================
====================================================
Here QP is a new variable we have previously added with no problem so likely that isn't the error. I'm not really comfortable with FORTRAN but I believe the error comes from this line that is added in the #EM_CORE block,
I can provide any additional changes I've made if that helps spot the problem.
Thank You,
Jesse
I am currently attempting at extracting the instantaneous inverse density as a timeseries with the TSLIST option. I have been following the guide here :
https://forum.mmm.ucar.edu/phpBB3/viewtopic.php?t=8898
I believe I may be missing something in my own version with this error during compilation ,
================================================================
Code:
wrf_timeseries.f90:38:74:
ts_file_endings = (/ 'UU', 'VV', 'PH', 'TH', 'QV' ,'WW', 'PR', 'QP', 'RHO' /)
1
Error: Different CHARACTER lengths (2/3) in array constructor at (1)
wrf_timeseries.f90:236:58:
WRITE(ts_profile_filename(i-1:i),'(A2)') ts_file_endings(j)
1
Error: Function ‘ts_file_endings’ at (1) has no IMPLICIT type
wrf_timeseries.f90:228:42:
DO j=1,SIZE(ts_file_endings)
1
Here QP is a new variable we have previously added with no problem so likely that isn't the error. I'm not really comfortable with FORTRAN but I believe the error comes from this line that is added in the #EM_CORE block,
Code:
grid%ts_rho_profile(n,i,k) = grid%alt(ix,k,iy)
I can provide any additional changes I've made if that helps spot the problem.
Thank You,
Jesse