Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EAMxx: make SPA use DataInterpolation #6920

Merged
merged 8 commits into from
Feb 17, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion components/eamxx/src/control/atmosphere_driver.cpp
Original file line number Diff line number Diff line change
@@ -1271,6 +1271,9 @@ void AtmosphereDriver::set_initial_conditions ()
const auto& file_name = ic_pl.get<std::string>("Filename");
m_atm_logger->info(" [EAMxx] IC filename: " + file_name);
for (const auto& [grid_name,fm] : m_field_mgrs) {
if (ic_fields_names[grid_name].size()==0)
continue;

std::vector<Field> ic_fields;
for (const auto& fn : ic_fields_names[grid_name]) {
ic_fields.push_back(fm->get_field(fn));
@@ -1349,8 +1352,11 @@ void AtmosphereDriver::set_initial_conditions ()
const auto& file_name = ic_pl.get<std::string>("topography_filename");
m_atm_logger->info(" filename: " + file_name);
for (const auto& [grid_name,fm] : m_field_mgrs) {
std::vector<Field> topo_fields;
int nfields = topography_eamxx_fields_names[grid_name].size();
if (nfields==0)
continue;

std::vector<Field> topo_fields;
for (int i=0; i<nfields; ++i) {
auto eamxx_fname = topography_eamxx_fields_names[grid_name][i];
auto file_fname = topography_file_fields_names[grid_name][i];
Original file line number Diff line number Diff line change
@@ -225,10 +225,12 @@ FortranData::Ptr make_standard(const Int shcol, Int nlev, Int num_qtracers) {

// From scream-docs/shoc-port/shocintr.py.
FortranData::Ptr Factory::create (IC ic, Int shcol, Int nlev, Int num_qtracers) {
FortranData::Ptr ret;
switch (ic) {
case standard: return make_standard(shcol, nlev, num_qtracers);
case standard: ret = make_standard(shcol, nlev, num_qtracers); break;
default: EKAT_REQUIRE_MSG(false, "Not an IC: " << ic);
}
return ret;
}

} // namespace ic
4 changes: 0 additions & 4 deletions components/eamxx/src/physics/spa/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -2,9 +2,5 @@ add_library(spa eamxx_spa_process_interface.cpp)
target_compile_definitions(spa PUBLIC EAMXX_HAS_SPA)
target_link_libraries(spa physics_share scream_share)

if (NOT SCREAM_LIB_ONLY)
add_subdirectory(tests)
endif()

# Add this library to eamxx_physics
target_link_libraries(eamxx_physics INTERFACE spa)
283 changes: 80 additions & 203 deletions components/eamxx/src/physics/spa/eamxx_spa_process_interface.cpp

Large diffs are not rendered by default.

59 changes: 5 additions & 54 deletions components/eamxx/src/physics/spa/eamxx_spa_process_interface.hpp
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
#ifndef SCREAM_PRESCRIBED_AEROSOL_HPP
#define SCREAM_PRESCRIBED_AEROSOL_HPP

#include "physics/spa/spa_functions.hpp"
#include "share/atm_process/atmosphere_process.hpp"
#include "share/io/scorpio_input.hpp"
#include "share/grid/remap/abstract_remapper.hpp"
#include <ekat/ekat_parameter_list.hpp>

#include <string>

namespace scream
{

class DataInterpolation;

/*
* The class responsible to handle the calculation of the subgrid cloud fractions
*
@@ -22,16 +18,6 @@ namespace scream
class SPA : public AtmosphereProcess
{
public:
using SPAFunc = spa::SPAFunctions<Real, DefaultDevice>;
using Spack = SPAFunc::Spack;
using KT = ekat::KokkosTypes<DefaultDevice>;

using view_1d = typename SPAFunc::view_1d<Spack>;
using view_2d = typename SPAFunc::view_2d<Spack>;

template<typename ScalarT>
using uview_2d = Unmanaged<typename KT::template view_2d<ScalarT>>;

// Constructors
SPA (const ekat::Comm& comm, const ekat::ParameterList& params);

@@ -44,51 +30,16 @@ class SPA : public AtmosphereProcess
// Set the grid
void set_grids (const std::shared_ptr<const GridsManager> grids_manager);

// Structure for storing local variables initialized using the ATMBufferManager
struct Buffer {
// Used to store temporary data during spa_main
SPAFunc::SPAInput spa_temp;

// Temporary to use
uview_2d<Spack> p_mid_src;
};
protected:

// The three main overrides for the subcomponent
void initialize_impl (const RunType run_type);
void initialize_spa_impl ();
void run_impl (const double dt);
void finalize_impl ();

// Computes total number of bytes needed for local variables
size_t requested_buffer_size_in_bytes() const;

// Set local variables using memory provided by
// the ATMBufferManager
void init_buffers(const ATMBufferManager &buffer_manager);

// Keep track of field dimensions and the iteration count
int m_num_cols;
int m_num_levs;
int m_num_src_levs;
int m_nswbands = 14;
int m_nlwbands = 16;

// Struct which contains temporary variables used during spa_main
Buffer m_buffer;

// IO structure to read in data for standard grids (keep it around to avoid re-creating PIO decomps)
std::shared_ptr<AtmosphereInput> SPADataReader;

// Structures to store the data used for interpolation
std::shared_ptr<AbstractRemapper> SPAHorizInterp;
void finalize_impl () { /* Nothing to do */ }

SPAFunc::SPATimeState SPATimeState;
SPAFunc::SPAInput SPAData_start;
SPAFunc::SPAInput SPAData_end;
SPAFunc::SPAOutput SPAData_out;
std::shared_ptr<const AbstractGrid> m_model_grid;

std::shared_ptr<const AbstractGrid> m_grid;
std::shared_ptr<DataInterpolation> m_data_interpolation;
}; // class SPA

} // namespace scream
216 changes: 0 additions & 216 deletions components/eamxx/src/physics/spa/spa_functions.hpp

This file was deleted.

Loading
Loading