EarthSciML / EarthSciMLBase.jl

Basic functionality for EarthSciML system
Mozilla Public License 2.0
3 stars 0 forks source link

Add IncompleteModel type #15

Open ctessum opened 6 months ago

ctessum commented 6 months ago

The idea is that this type would not require any arguments to initialize it, and it would get those arguments from other model components.

For example:

Model1 = PartialModel(
     :t => time,
)

time(tm::TimeProvidingModel) = tm.t