The error is ERROR: type Array has no field T. I think it is because we treat it as a one-timestep thing in run!(see "run.jl" line 176) because of this line:
|
nsteps = get_nsteps(meteo_adjusted) |
|
|
Here is a reproducible example:
meteo = Weather([Atmosphere(T=20.0, Wind=1.0, P=101.3, Rh=0.65)])
ml =
ModelList(
Monteith(), Medlyn(0.3, 7.0),
Fvcb(VcMaxRef=155.0, JMaxRef=266.0, RdRef=1.6, TPURef=7.0),
status=(
Rₛ=320.0, sky_fraction=0.20,
aPPFD=700.0, d=0.10
)
)
run!(ml, meteo)
The error is
ERROR: type Array has no field T. I think it is because we treat it as a one-timestep thing inrun!(see "run.jl" line 176) because of this line:PlantSimEngine.jl/src/run.jl
Lines 188 to 189 in f0e97f3
Here is a reproducible example: