@@ -343,6 +343,8 @@ function default_freshwater_flux(grid, times)
343
343
return (; rain, snow)
344
344
end
345
345
346
+ """ The standard unit of atmospheric pressure; 1 standard atmosphere (atm) = 101,325 Pascals (Pa) in SI units.
347
+ This is approximately equal to the mean sea-level atmospheric pressure on Earth. """
346
348
function default_atmosphere_pressure (grid, times)
347
349
pa = FieldTimeSeries {Center, Center, Nothing} (grid, times)
348
350
parent (pa) .= 101325
371
373
PrescribedAtmosphere(grid, times;
372
374
clock = Clock{Float64}(time = 0),
373
375
surface_layer_height = 10, # meters
374
- boundary_layer_height = 600 # meters,
376
+ boundary_layer_height = 512 # meters,
375
377
thermodynamics_parameters = PrescribedAtmosphereThermodynamicsParameters(FT),
376
378
auxiliary_freshwater_flux = nothing,
377
379
velocities = default_atmosphere_velocities(grid, times),
@@ -385,8 +387,8 @@ state with data given at `times`.
385
387
"""
386
388
function PrescribedAtmosphere (grid, times;
387
389
clock = Clock {Float64} (time = 0 ),
388
- surface_layer_height = convert ( eltype (grid), 10 ) ,
389
- boundary_layer_height = convert ( eltype (grid), 600 ) ,
390
+ surface_layer_height = 10 ,
391
+ boundary_layer_height = 512 ,
390
392
thermodynamics_parameters = nothing ,
391
393
auxiliary_freshwater_flux = nothing ,
392
394
velocities = default_atmosphere_velocities (grid, times),
422
424
"""
423
425
TwoBandDownwellingRadiation(shortwave=nothing, longwave=nothing)
424
426
425
- Return a two-band model for downwelling radiation (split in a shortwave band
427
+ Return a two-band model for downwelling radiation (split into a shortwave band
426
428
and a longwave band) that passes through the atmosphere and arrives at the surface of ocean
427
429
or sea ice.
428
430
"""
@@ -434,4 +436,3 @@ Adapt.adapt_structure(to, tsdr::TwoBandDownwellingRadiation) =
434
436
adapt (to, tsdr. longwave))
435
437
436
438
end # module
437
-
0 commit comments