How to import a model into DART?

Some reference:

Can I run my model with DART? — DART 11.7.0 documentation (ucar.edu)

Pay special attention to What code is required to interface a model with DART

Instructions for porting a new model to DART — DART 11.7.0 documentation (ucar.edu)

Required model_mod routines — DART 11.7.0 documentation (ucar.edu)

Suggestions for a “complex” model — DART 11.7.0 documentation (ucar.edu)

How to test your model_mod routines — DART 11.7.0 documentation (ucar.edu)

What quantities are in the model state?origin

DART defines a “Quantity” as the fundamental physical object a value is measuring. Examples are Temperature, Pressure, Salinity, etc. Each value in a model state must be associated with a defined quantity.

What is needed to run Pangu with DART?

translate numpy ndarray into NetCDF files for DART reading.

Try CAM format for now?

using xarray to do the translation may be the better choice.

some resources:

Reading and writing files (xarray.dev)

NetCDF: FAQ (ucar.edu)