Hello,
Have you decided to use ASCII format with atmospheric data at a few locations and linear interpolation?
Do you mean you use meteo.f file from user_fortran folder?
In that case, the example is very specific to the input data, only wind is read.
If you have succeeded in reading air pressure, do the same with humidity and solar radiation, it is not so different to read (as soon as you are coherent with your input files).
After that, if you want to use them, you have to find the good variables how to store them to be used by TELEMAC-3D. For solar radiation, you have to feed RAY3 variable. For humidity, the array is HREL. In your modified METEO subroutine, add the declaration of this variable (RAY3 is already there):
USE METEO_TELEMAC, ONLY: TAIR,SYNC_METEO,RAY3,RAINFALL,HREL
To understand what atmospheric data can be used and where it is stored, you can read the $HOMETEL/sources/utils/bief/meteo_telemac.f module.
Hope this helps,
Chi-Tuan