Converting from hours to seconds on Simbiology

1 Ansicht (letzte 30 Tage)
Does the Simbiology Model Analyzer have a simple way of converting data plots from seconds to hours?
Like, if I were writing the code on Matlab, I would just divide the time for 3600 and run the simulation to make this conversion (t = t/3600), so I was wondering if that is also something that I can do directly on simbiology ?
Eg:
h=3600;
plot(time/h,simulation(:,1))

Akzeptierte Antwort

Jeremy Huard
Jeremy Huard am 9 Jan. 2023
Hi Rebeca,
plots in SimBiology Model Analyzer will use the time unit specified in the program's simulation stop time.
So, if you convert the StopTime currently in seconds to the equivalent in hours and rerun the program, the plots will use hours instead.
For this to work, please make sure that unit conversion is turned on in the Simulation settings.
Best regards,
Jérémy
  3 Kommentare
Jeremy Huard
Jeremy Huard am 9 Jan. 2023
Hi Rebeca,
that's right. Unit conversion requires you to define units for all components in your model.
If you can, I would recommend to do so to allow you to use different units in your model while ensuring the system of units is consistent and be able to change the stop time's unit. SimBiology will also perform volume scaling automatically.
If you can't, the easiest way would be to export the simulation results to the MATLAB workspace and write some code to create the plot using steps similar to the following ones:
1- export results from Model Analyzer
2- extract quantity you want to plot, e.g.:
[t, x] = selectbyname(results, "Central.Drug");
3- create a plot
plot(t/3600, x, DisplayName="Central.Drug");
I hope this helps.
Best regards,
Jérémy

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Communitys

Weitere Antworten in  SimBiology Community

Kategorien

Mehr zu Extend Modeling Environment finden Sie in Help Center und File Exchange

Produkte


Version

R2022a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by