- create parameters MolecularWeight, doseMole, doseGram
- create an initial assignment rule doseMole = doseGram*MolecularWeight
- create a dose with doseMole as its amount
Is it possible to create custom (species-specific) conversion factors in Simbiology?
2 views (last 30 days)
Show older comments
Is there a way to create custom (species-specific) conversion factors in SimBiology that can be used by 'unit conversion' to automatically convert dosing units, so that, for example, I can enter a dose in grams for a species with units 'molarity'?
2 Comments
Jeremy Huard
on 12 Apr 2021
Edited: Jeremy Huard
on 13 Apr 2021
Hi Shalla,
can you tell us more about the context: do you want to run simulations only or is it in the context of data fitting?
If you only want to run simulations, you could use a parameterized dose. The appoach is shown in the Scale Dose Amount by Body Weight example. For you specific use case you would:
Best regards,
Jérémy
Edit: I had switched doseMole and doseGram in the above steps. It's now corrected.
Accepted Answer
Jeremy Huard
on 21 Apr 2021
Hi Shalla,
In this case, the easiest way is to :
- import your experimental data as a table
- add a column that divides the dose amount in gram by the molecular weight
- convert the table to a groupedData object
- call the method createDoses on the groupedData object
With this approach the molecular weight won't be a parameter of the SimBiology model but will be a parameter defined in your script/function to run the fit instead.
There is a way to make this conversion happen automatically in the model itself but it is not trivial. What you suggested with the initial assignment + dose would not work unfortunately. Initial and repeated assignments are evaluated first to get the initial conditions and only then doses are applied. So your doseAmount parameter would remain zero.
The solution I came up with involves the use of events. This has the advantage of working fine even in the case of repeated doses within the same group.
I have attached a working example developed in R2021a in the SimBiology Apps. Please have a look at the program Program_events.
Edit: Please note that this example is for bolus dose only. It won't work if your dataset contains a rate column.
However, if you run the fit using a script, you don’t necessarily need to add those the events and extra species/parameters to the SimBiology project file. You can do it temporarily in the script. Here is the code you would need:
% temporary compartment and species
compObj = addcompartment(modelObj, "comp_temp",1,"Unit","liter");
addspecies(compObj,"speciesGram",0,"Unit","gram");
% parameters
addparameter(modelObj,"molecularWeight",80,"Unit","gram/mole");
addparameter(modelObj,"zeroGram",0,"Unit","gram");
% in the following I will assume the species in Mole you want to dose is
% comp.speciesMole
eventFcn = ["comp.speciesMole = comp.speciesMole + comp_temp.speciesGram/molecularWeight"; % dose event
"comp_temp.speciesGram = zeroGram"]; % reset the speciesGram right after dosing to make avaialble for repeated doses
addevent(modelObj,"time > 0",eventFcn); % need to handle doses at time=0 separately becuase events are not triggered at time=0
addevent(modelObj,"comp_temp.speciesGram > zeroGram",eventFcn);
I hope this helps.
Best regards,
Jérémy
0 Comments
More Answers (0)
Communities
More Answers in the SimBiology Community
See Also
Categories
Find more on Perform Sensitivity Analysis in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!