Dear Chi-Tuan,
I don't understand something:
docs.opentelemac.org/doxydocs/v8p2r0/htm...rmics_8f_source.html
I was reading the code of thermics_3D and I was wondering why is used btabos
122 IF(atmosexch.EQ.1) THEN
123 a=(4.48d0+0.049d0*treel+2021.5d0*c_atmos*(1.d0+ww)*
124 & (1.12d0+0.018d0*treel+0.00158d0*treel**2))/lamb
125 atabos%ADR(ind_t)%P%R(ipoin2)=-a
126 btabos%ADR(ind_t)%P%R(ipoin2)= a*tair%R(ipoin2)
127 ELSEIF(atmosexch.EQ.2) THEN
128 !
129 ! SENSIBLE HEAT FLUXES
130 !
131 CALL evapo(treel,tair%R(ipoin2),ww2,patmos%R(ipoin2),
132 & hrel%R(ipoin2),ro,flux_evap,flux_sens,debevap,
133 & c_atmos,cfaer(1),cfaer(2))
134 !
135 ! LONGWAVE HEAT FLUXES
136 !
137 CALL shortrad(treel,tair%R(ipoin2),cldc%R(ipoin2),
138 & hrel%R(ipoin2),ray_atm,ray_eau)
139 !
140 ! BOUNDARY CONDITION FOR TEMPERATURE AT SURFACE
141 !
142 atabos%ADR(ind_t)%P%R(ipoin2) = 0.d0
143 btabos%ADR(ind_t)%P%R(ipoin2) = (ray_atm-ray_eau-flux_evap
144 & -flux_sens)/lamb
145 ENDIF
Thank you very much