Skip to content

Commit d6e64f1

Browse files
committed
changed back-radiation to longwave radiation - Stips
1 parent cf46b63 commit d6e64f1

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

src/airsea/airsea.F90

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -160,14 +160,14 @@ subroutine init_airsea_yaml()
160160
! These parameters are:
161161
!
162162
! \begin{tabular}{ll}
163-
! {\tt calc\_fluxes} & {\tt .true.}: Sensible, latent and back-radiation are calculated by \\
163+
! {\tt calc\_fluxes} & {\tt .true.}: Sensible, latent and longwave-radiation are calculated by \\
164164
! & means of bulk formulae. In this case, {\tt meteo\_file} must be \\
165165
! & given and {\tt hum\_method} must be specified. \\
166166
! & {\tt .false.}: Surface fluxes and solar radiation are prescribed. \\
167167
! {\tt fluxes\_method} & Select which parameterisation to use for latent and sensible fluxes: \\
168168
! & 1: Kondo (1975) \\
169169
! & 2: Fairall et al. (1996) \\
170-
! {\tt back\_radiation\_method} & Select which parameterisation to use: \\
170+
! {\tt longwave\_radiation\_method} & Select which parameterisation to use: \\
171171
! & 1: Clark et al. (1974) \\
172172
! & 2: Hastenrath and Lamb (1978) \\
173173
! & 3: Bignami et al. (1995) \\
@@ -247,7 +247,7 @@ subroutine init_airsea_yaml()
247247
twig => branch%get_typed_child('fluxes', 'heat and momentum fluxes')
248248
call twig%get(fluxes_method, 'method', 'method to calculate fluxes from meteorological conditions', &
249249
options=(/option(0, 'use prescribed fluxes', 'off'), option(1, 'Kondo (1975)', 'kondo'), option(2, 'Fairall et al. (1996)', 'fairall')/), default=0)
250-
call twig%get(heat_input, 'heat', 'prescribed total heat flux (sensible, latent and net back-radiation)', 'W/m^2', &
250+
call twig%get(heat_input, 'heat', 'prescribed total heat flux (sensible, latent and net longwave-radiation)', 'W/m^2', &
251251
default=0._rk)
252252
call twig%get(tx_input, 'tx', 'prescribed momentum flux in West-East direction', 'Pa', &
253253
default=0._rk)
@@ -313,14 +313,14 @@ subroutine post_init_airsea(lat,lon)
313313
! These parameters are:
314314
!
315315
! \begin{tabular}{ll}
316-
! {\tt calc\_fluxes} & {\tt .true.}: Sensible, latent and back-radiation are calculated by \\
316+
! {\tt calc\_fluxes} & {\tt .true.}: Sensible, latent and longwave-radiation are calculated by \\
317317
! & means of bulk formulae. In this case, {\tt meteo\_file} must be \\
318318
! & given and {\tt hum\_method} must be specified. \\
319319
! & {\tt .false.}: Surface fluxes and solar radiation are prescribed. \\
320320
! {\tt fluxes\_method} & Select which parameterisation to use for latent and sensible fluxes: \\
321321
! & 1: Kondo (1975) \\
322322
! & 2: Fairall et al. (1996) \\
323-
! {\tt back\_radiation\_method} & Select which parameterisation to use: \\
323+
! {\tt longwave\_radiation\_method} & Select which parameterisation to use: \\
324324
! & 1: Clark et al. (1974) \\
325325
! & 2: Hastenrath and Lamb (1978) \\
326326
! & 3: Bignami et al. (1995) \\
@@ -677,7 +677,7 @@ subroutine flux_from_meteo(jul,secs)
677677
! in {\tt meteo\_file} the
678678
! fluxes of heat and momentum, and the net
679679
! longwave radiation by calling the routines {\tt humidity},
680-
! {\tt back\_radiation} and {\tt airsea\_fluxes}, see sections
680+
! {\tt longwave\_radiation} and {\tt airsea\_fluxes}, see sections
681681
! \sect{sec:humidity}, \sect{sec:back-rad}, and \sect{sec:airsea-fluxes},
682682
! a wrapper routine for using the bulk fomulae from either \cite{Kondo75}
683683
! or \cite{Fairalletal96a}. Afterwards, the airsea fluxes

src/airsea/airsea_fluxes.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ subroutine airsea_fluxes(method,sst,airt,u10,v10,precip, &
1212
! A wrapper around the different methods for calculating momentum
1313
! fluxes and sensible and latent heat fluxes at the air-sea interface.
1414
! To have a complete air-sea exchange also the short wave radiation
15-
! and back-wave radiation must be calculated.
15+
! and longwave-wave radiation must be calculated.
1616
!
1717
! !USES:
1818
IMPLICIT NONE

0 commit comments

Comments
 (0)