Benchmarking-Initiative / Benchmark-Models-PEtab

A collection of mathematical models with experimental data in the PEtab format as benchmark problems in order to evaluate new and existing methodologies for data-based modelling
BSD 3-Clause "New" or "Revised" License
26 stars 14 forks source link

Fujita_SciSignal2010 test data #131

Closed dilpath closed 2 years ago

dilpath commented 2 years ago

Previously only the "step" data was included (for training).

Added a piecewise to the model equivalent to

if time <= EGF_end:
    EGF = EGF_rate*[time] + EGF_0
else:
    EGF = 0

This is to model the step, pulse, and ramp inputs (see conditions file).