|
416 | 416 | function Interfacer.update_field!(sim::ClimaLandSimulation, ::Val{:air_humidity}, field)
|
417 | 417 | parent(sim.integrator.p.drivers.q) .= parent(field)
|
418 | 418 | end
|
419 |
| -function Interfacer.update_field!(sim::ClimaLandSimulation, ::Val{:c_co2}, field) |
420 |
| - sim.integrator.p.drivers.c_co2 .= field |
| 419 | +function Interfacer.update_field!(sim::ClimaLandSimulation, ::Val{:c_co2}, scalar) |
| 420 | + sim.integrator.p.drivers.c_co2 .= scalar |
421 | 421 | end
|
422 | 422 | function Interfacer.update_field!(sim::ClimaLandSimulation, ::Val{:liquid_precipitation}, field)
|
423 | 423 | # Arbitrarily take parameters from the soil (they are the same for all land sub-components)
|
@@ -471,29 +471,34 @@ function FieldExchanger.import_atmos_fields!(csf, sim::ClimaLandSimulation, atmo
|
471 | 471 | FieldExchanger.dummmy_remap!(csf.q_air, Interfacer.get_field(atmos_sim, Val(:specific_humidity)))
|
472 | 472 | FieldExchanger.dummmy_remap!(csf.P_liq, Interfacer.get_field(atmos_sim, Val(:liquid_precipitation)))
|
473 | 473 | FieldExchanger.dummmy_remap!(csf.P_snow, Interfacer.get_field(atmos_sim, Val(:snow_precipitation)))
|
474 |
| - # CO2 is a scalar so it doesn't need remapping TODO store CO2 as a scalar in the coupler fields |
475 |
| - csf.c_co2 .= Interfacer.get_field(atmos_sim, Val(:co2)) |
| 474 | + # CO2 is a scalar so it doesn't need remapping, but we do need to access the Ref |
| 475 | + csf.c_co2[] = Interfacer.get_field(atmos_sim, Val(:co2)) |
476 | 476 | end
|
477 | 477 |
|
478 | 478 | """
|
| 479 | + Interfacer.add_coupler_fields!(coupler_field_names, ::ClimaLandSimulation) |
| 480 | +
|
479 | 481 | Extend Interfacer.add_coupler_fields! to add the fields required for ClimaLandSimulation.
|
480 | 482 |
|
481 | 483 | The fields added are:
|
| 484 | +- `:c_co2` (for photosynthesis, biogeochemistry) - scalar |
482 | 485 | - `:SW_d` (for radiative transfer)
|
483 | 486 | - `:LW_d` (for radiative transfer)
|
484 | 487 | - `:cos_zenith_angle` (for radiative transfer)
|
485 | 488 | - `:diffuse_fraction` (for radiative transfer)
|
486 |
| -- `:c_co2` (for photosynthesis, biogeochemistry) |
487 | 489 | - `:P_air` (for canopy conductance)
|
488 | 490 | - `:T_air` (for canopy conductance)
|
489 | 491 | - `:q_air` (for canopy conductance)
|
490 | 492 | - `P_liq` (for moisture fluxes)
|
491 | 493 | - `P_snow` (for moisture fluxes)
|
492 | 494 | """
|
493 | 495 | function Interfacer.add_coupler_fields!(coupler_field_names, ::ClimaLandSimulation)
|
494 |
| - land_coupler_fields = |
495 |
| - [:SW_d, :LW_d, :cos_zenith_angle, :diffuse_fraction, :c_co2, :P_air, :T_air, :q_air, :P_liq, :P_snow] |
496 |
| - push!(coupler_field_names, land_coupler_fields...) |
| 496 | + land_coupler_fields_1d = [:c_co2] |
| 497 | + land_coupler_fields_2d = |
| 498 | + [:SW_d, :LW_d, :cos_zenith_angle, :diffuse_fraction, :P_air, :T_air, :q_air, :P_liq, :P_snow] |
| 499 | + push!(coupler_field_names[1], land_coupler_fields_1d...) |
| 500 | + push!(coupler_field_names[2], land_coupler_fields_2d...) |
| 501 | + return nothing |
497 | 502 | end
|
498 | 503 |
|
499 | 504 | function Checkpointer.get_model_prog_state(sim::ClimaLandSimulation)
|
|
0 commit comments