-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationquestionFurther information is requestedFurther information is requested
Description
in pre-definded experiment "Albedo" (notebook uploaded to Pre-Defined_Experiments folder), I set ocean and land albedo in this way:
#Create a ManualAlbedo object
manual = ManualAlbedo(spectral_grid)
#Create the composite albedo object
albedo = Albedo(manual, manual)
#Set land and ocean albedo patterns using the composite object
set!(albedo.land, (λ, φ) -> 0.3 + 0.2 * abs(φ)/90)
set!(albedo.ocean, (λ, φ) -> 0.06 + 0.04 * abs(φ)/90)
But when I look at simulation.diagnostic_variables.physics.ocean.albedo
and simulation.diagnostic_variables.physics.land.albedo
they are the same. Why?
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationquestionFurther information is requestedFurther information is requested