SlideShare uma empresa Scribd logo
1 de 70
Units in SBML
and how libSBML checks them
Sarah Keating
Associate units with a variable
• Use attributes in the SBML
<compartment units=“ ” />
<species substanceUnits=“ ” />
<parameter units=“ ” />
Associate units with a variable
• Values that can be used
ampere farad joule lux radian volt
avogadro gram katal metre second watt
becquerel gray kelvin mole siemens weber
candela henry kilogram newton sievert
coulomb hertz litre ohm steradian
dimensionless item lumen pascal tesla
Associate units with a variable
• Use attributes in the SBML
<compartment units=“litre” />
<species substanceUnits=“mole” />
<parameter units=“second” />
Associate units with a variable
• Values that can be used
ampere farad joule lux radian volt
avogadro gram katal metre second watt
becquerel gray kelvin mole siemens weber
candela henry kilogram newton sievert
coulomb hertz litre ohm steradian
dimensionless item lumen pascal tesla
Associate units with a variable
• Values that can be used
ampere farad joule lux radian volt
avogadro gram katal metre second watt
becquerel gray kelvin mole siemens weber
candela henry kilogram newton sievert
coulomb hertz litre ohm steradian
dimensionless item lumen pascal tesla
Associate units with a variable
• Values that can be used
ampere farad joule lux radian volt
avogadro gram katal metre second watt
becquerel gray kelvin mole siemens weber
candela henry kilogram newton sievert
coulomb hertz litre ohm steradian
dimensionless item lumen pascal tesla
• Not one of the base units
Associate units with a variable
• Not one of the base units
Associate units with a variable
UnitDefinitions
id of unitDefinition used as unit attribute
Associate units with a variable
<unitDefinition id=“my_metre”>
<listOfUnits>
<unit kind=“metre” scale=“0” multiplier=“1” exponent=“1”/>
</listOfUnits>
</unitDefinition>
1 id = (multiplier * 10scale * kind)exponent
1 my_metre = (1 * 100 * metre)1 = 1 m
• Not one of the base units
Associate units with a variable
<unitDefinition id=“milligram”>
<listOfUnits>
<unit kind=“gram” scale=“-3” multiplier=“1” exponent=“1”/>
</listOfUnits>
</unitDefinition>
1 id = (multiplier * 10scale * kind)exponent
1 milligram = (1 * 10-3 * gram)1 = 0.001 g
• Not one of the base units
Associate units with a variable
<unitDefinition id=“minute”>
<listOfUnits>
<unit kind=“second” scale=“0” multiplier=“60” exponent=“1”/>
</listOfUnits>
</unitDefinition>
1 id = (multiplier * 10scale * kind)exponent
1 minute= (60 * 100 * second)1 = 60 s
• Not one of the base units
Associate units with a variable
<unitDefinition id=“metre_squared”>
<listOfUnits>
<unit kind=“metre” scale=“0” multiplier=“1” exponent=“2”/>
</listOfUnits>
</unitDefinition>
1 id = (multiplier * 10scale * kind)exponent
1 metre_squared= (1* 100 * metre)2 = 1 m2
• Not one of the base units
Associate units with a variable
<unitDefinition id=“minute_squared”>
<listOfUnits>
<unit kind=“second” scale=“0” multiplier=“60” exponent=“2”/>
</listOfUnits>
</unitDefinition>
1 id = (multiplier * 10scale * kind)exponent
1 minute2= (60* 100 * second)2 = (60 s)2 =3600 s2
• Not one of the base units
Associate units with a variable
<compartment units=“metre_squared” />
<species substanceUnits=“milligram” />
<parameter units=“minute” />
• Not one of the base units
Associate units with a variable
<unitDefinition id=“u0”>
<listOfUnits>
<unit kind=“metre” scale=“0” multiplier=“1” exponent=“2”/>
<unit kind=“second” scale=“0” multiplier=“1” exponent=“-1”/>
</listOfUnits>
</unitDefinition>
1 id = (m1 * 10s1 * kind1)e1 * (m2 * 10s2 * kind2)e2
1 u0 = (1* 100 * metre)2 * (1* 100 * second)-1 = 1 m2s-1
• Combination of base units
Checking units of variables
compartment
Spatial
Dimensions
Appropriate values for units attribute
0 dimensionless
1 metre
OR id of unitDefinition with
<unit kind=“metre” scale=“ ” multiplier=“ ” exponent=“1”/>
OR length (predefined in L1/L2 NOT L3)
2 id of unitDefinition with
<unit kind=“metre” scale=“ ” multiplier=“ ” exponent=“2”/>
OR area (predefined in L1/L2 NOT L3)
3 litre
OR id of unitDefinition with
<unit kind=“litre” scale=“ ” multiplier=“ ” exponent=“1”/>
OR id of unitDefinition with
<unit kind=“metre” scale=“ ” multiplier=“ ” exponent=“3”/>
OR volume (predefined in L1/L2 NOT L3)
Checking units of variables
compartment
<compartment spatialDimensions=“3” units=“ ” />
Assumes units according to the spatialDimensions attribute
L1/L2 predefined L3 from attribute on model
length (m) lengthUnits
area (m2) areaUnits
volume (l) volumeUnits
In L3 possible for the unit to be undeclared
Checking units of variables
Appropriate values for substanceUnits attribute
dimensionless substance (predefined in L1/L2 NOT L3)
mole
OR id of unitDefinition with
<unit kind=“mole” exponent=“1”/>
item
OR id of unitDefinition with
<unit kind=“item” exponent=“1”/>
kilogram
OR id of unitDefinition with
<unit kind=“kilogram” exponent=“1”/>
gram
OR id of unitDefinition with
<unit kind=“gram” exponent=“1”/>
avogadro (L3 ONLY)
OR id of unitDefinition with
<unit kind=“avogadro” exponent=“1”/>
species
Checking units of variables
<species substanceUnits=“ ” />
L1/L2 predefined L3 from attribute on model
substance (mol) substanceUnits
In L3 possible for the substanceUnit to be undeclared
species
Assumes substance units
Checking units of variables
<species substanceUnits=“mole” hasOnlySubstanceUnits=“true” />
species
Units of the species are those of substance ONLY
Checking units of variables
<species substanceUnits=“mole” hasOnlySubstanceUnits=“false”
compartment=“c” />
species
Substance units are as given for the species
BUT
Species has units of concentration
[ ] [ ]
[ ]tcompartmencontainingof
speciesofunits
units
nitssubstanceU
=
Checking units of variables
model
<model lengthUnits=“” areaUnits=“” volumeUnits=“”
substanceUnits=“”
extentUnits=“”
timeUnits=“” >
L3 ONLY
Checking units of variables
checkConsistency()
Warning Line 25 Column 88: (SBML Validation Rule #20608) The value of a
<species>'s 'units' attribute is restricted. Reference: L3V1 Section 4.6.5 The
value of a <species>'s 'substanceUnits' attribute can only be one of the
following: 'substance', 'mole', 'item', 'gram', 'kilogram', 'dimensionless',
'avogadro' or the identifier of a <unitDefinition> derived from 'mole' (with
an 'exponent' of '1'), 'item' (with an 'exponent' of '1'), 'gram' (with an
'exponent' of '1'), 'kilogram' (with an 'exponent' of '1'), 'avogadro' (with an
'exponent' of '1') or 'dimensionless'.
Checking units of variables
UnitDefinition::isVariantOfArea()
UnitDefinition::isVariantOfLength()
UnitDefinition::isVariantOfMass()
UnitDefinition::isVariantOfVolume()
UnitDefinition::isVariantOfDimensionless()
UnitDefinition::isVariantOfSubstance()
Checking units of expressions
<assignmentRule variable=“S”>
<math xmlns=“http://www.w3.org/1998/Math/MathML”
<apply>
<times/>
<ci> T </ci>
<ci> K </ci>
</apply>
</math>
</assignmentRule>
Checking units of expressions
KT
dt
dS
*= rateRule
assignmentRule/initialAssignment/
eventAssignment
KTS *=
KT *
time
extent
=





kineticLaw
[ ] KT *time = delay
[ ] KT *essdimensionl = priority
Checking units of expressions
If all units have been declared
- know the units of S, T and K
- can work out the units of ‘T * K’ (RHS)
- can verify that the units of LHS match the units of RHS
Checking units of expressions
BUT
Checking units of expressions
If all units have been declared
- know the units of S, T and K
- can we work out the units of RHS
- can verify that the units of LHS match the units of RHS
Checking units of expressions
Is the math correct ????
divide
T
Abstract Syntax Tree
T ÷ K
K
Are the number of arguments correct ?
Checking units of expressions
Is the math correct ????
Are the number of arguments correct ?
Class of function Number of arguments Example
unary one sin
binary two divide
nary zero or more times
at_least_two two or more equals
special can vary piecewise
minus
root
log
checkConsistency()
Error Line 5 Column 12: (SBML Validation Rule #10218) A MathML operator
must be supplied the number of arguments appropriate for that operator.
Reference: L3V1 Section 3.4.1 The formula 'piecewise()' in the math
element of the Constraint has an inappropriate number of arguments.
Checking units of expressions
Checking units of expressions
Is the math correct ????
eq
T
T == K
K
Are the types of arguments correct ?
For example:
3.4 == false
3.4 && false
sin(false)
are all INVALID
Checking units of expressions
Is the math correct ????
Are the types of arguments correct ?
Class of function Type of arguments Example
numeric numeric divide
logical boolean and
special either logical or numeric but must all be same type equals
piecewise conditional must be boolean
optional returns must be same type
checkConsistency()
Error Line 12 Column 15: (SBML Validation Rule #10212) The types of
values within <piecewise> operators must all be consistent: the set of
expressions that make up the first arguments of the <piece> and
<otherwise> operators within the same <piecewise> operator should all
return values of the same type. Reference: L3V1 Section 3.4.9 The
piecewise formula in the math element of the AlgebraicRule returns
arguments which have different value types from the first element 'p * 6'.
Checking units of expressions
Checking units of expressions
Is the math correct ????
Are the number of arguments correct ?
Are the types of arguments correct ?
if not UNIT
checking will
fail
Checking units of expressions
plus
T
T + K
K
units of arguments MUST be IDENTICAL
are the units appropriate
for the math ??
Checking units of expressions
times
T
T * K
K
no restrictions
are the units appropriate
for the math ??
Checking units of expressions
sin
T
sin(T) units of argument MUST be DIMENSIONLESS
are the units appropriate
for the math ??
checkConsistency()
Warning Line 16 Column 23: (SBML Validation Rule #10501) The units of
the expressions used as arguments to a function call are expected to match
the units expected for the arguments of that function. The formula 'p + p1'
in the math element of the AlgebraicRule can only act on variables with
the same units.
Checking units of expressions
Checking units of expressions
math number of arguments
math types of arguments
units of arguments
Checking units of expressions
times
T
T * K
K
Units of this node:
units of T times the units of K
Checking units of expressions
times
T
T * K
K
Units of this node:
units of T times the units of K
creates a UnitDefinition that represents the
units of the node
and caches it to reduce computation time
Checking units of expressions
plus
T
T + K
K
Units of this node:
units of T
Checking units of expressions
plus
T
T + K
K
Units of this node:
units of TWARNING: if units
of T are not
identical to the
units of K this
expression is illegal
Checking units of expressions
plus
T
T + K
K
Units of this node:
units of T
OR if T has no units declared
node will have units of K
records whether an expression has
undeclared units and whether they
can be ignored
Class of node Units returned Example
dimensionless dimensionless sin/and
same units identical to the arguments plus/abs
calculated units must be calculated for the expression times
divide
power
root
determined units will be returned by certain arguments piecewise
delay
numbers undeclared (L3 can declare them)
variables units appropriate to the component represented id of
species
Checking units of expressions
Checking units of expressions
plus
T Kroot
2 K
piece
wise
S Ktimes
T S
geq
G 2
floor
T
Checking units of the model
loops through whole model
creates data structure for each element
Member in structure Stores information about
UnitReferenceId identifier that relates the data structure to the SBML
component
ContainsUndeclaredUnits records whether an expression contained variables or
numbers for which there were no units available
true if it does
CanIgnoreUndeclaredUnits determines whether the unit of an expression with
undeclared units is accurate or not
true if the units are accurate
UnitDefinition a unitDefinition element that represents the units
PerTimeUnitDefinition UnitDefinition with the addition of a per time unit
Checking units of the model
tests the units for each expression by retrieving the
unitDefinitions for the RHS and the LHS and checking
that they are equivalent/identical
remove scale from any units (change to multiplier)
2 * 102 m == 20 * 101 m == 200 m
<unit kind=“metre” scale=“2” multiplier=“2” exponent=“1”/>
<unit kind=“metre” scale=“1” multiplier=“20” exponent=“1”/>
<unit kind=“metre” scale=“0” multiplier=“200” exponent=“1”/
Identical BUT do not want to compare two figures
Checking units of the model
tests the units for each expression by retrieving the
unitDefinitions for the RHS and the LHS and checking
that they are equivalent/identical
convert both unitDefinitions to base SI
loop thru the units and check they are equivalent/identical
remove scale from any units (change to multiplier)
simplify and order the units alphabetically
Checking units of the model
LHS RHS
<listOfUnits>
<unit kind=“newton” exponent=“1”/>
<unit kind=“metre” exponent=“1”/>
<listOfUnits>
<unit kind=“watt” exponent=“1”/>
<unit kind=“second” exponent=“1”/>
NOTE: multiplier = 1 scale = 0 for all units here
Checking units of the model
LHS RHS
<listOfUnits>
<unit kind=“newton” exponent=“1”/>
<unit kind=“metre” exponent=“1”/>
<listOfUnits>
<unit kind=“watt”
exponent=“1”/>
<unit kind=“second”
exponent=“1”/>
LHS
Checking units of the model
LHS RHS
<listOfUnits>
<unit kind=“metre” exponent=“1”/>
<unit kind=“kilogram” exponent=“1”/>
<unit kind=“second” exponent=“-2”/>
<unit kind=“metre” exponent=“1”/>
<listOfUnits>
<unit kind=“watt”
exponent=“1”/>
<unit kind=“second”
exponent=“1”/>
Convert to base SI
Checking units of the model
LHS RHS
<listOfUnits>
<unit kind=“metre” exponent=“2”/>
<unit kind=“kilogram” exponent=“1”/>
<unit kind=“second” exponent=“-2”/>
<listOfUnits>
<unit kind=“watt”
exponent=“1”/>
<unit kind=“second”
exponent=“1”/>
Simplify
Checking units of the model
LHS RHS
<listOfUnits>
<unit kind=“kilogram” exponent=“1”/>
<unit kind=“metre” exponent=“2”/>
<unit kind=“second” exponent=“-2”/>
<listOfUnits>
<unit kind=“watt”
exponent=“1”/>
<unit kind=“second”
exponent=“1”/>
Reorder based on kind
Checking units of the model
LHS RHS
<listOfUnits>
<unit kind=“kilogram”
exponent=“1”/>
<unit kind=“metre”
exponent=“2”/>
<unit kind=“second”
exponent=“-2”/>
<listOfUnits>
<unit kind=“watt” exponent=“1”/>
<unit kind=“second” exponent=“1”/>
RHS
Checking units of the model
LHS RHS
<listOfUnits>
<unit kind=“kilogram”
exponent=“1”/>
<unit kind=“metre”
exponent=“2”/>
<unit kind=“second”
exponent=“-2”/>
<listOfUnits>
<unit kind=“metre” exponent=“2”/>
<unit kind=“kilogram” exponent=“1”/>
<unit kind=“second” exponent=“-3”/>
<unit kind=“second” exponent=“1”/>
Convert to base SI
Checking units of the model
LHS RHS
<listOfUnits>
<unit kind=“kilogram”
exponent=“1”/>
<unit kind=“metre”
exponent=“2”/>
<unit kind=“second”
exponent=“-2”/>
<listOfUnits>
<unit kind=“metre” exponent=“2”/>
<unit kind=“kilogram” exponent=“1”/>
<unit kind=“second” exponent=“-2”/>
Simplify
Checking units of the model
LHS RHS
<listOfUnits>
<unit kind=“kilogram”
exponent=“1”/>
<unit kind=“metre”
exponent=“2”/>
<unit kind=“second”
exponent=“-2”/>
<listOfUnits>
<unit kind=“kilogram” exponent=“1”/>
<unit kind=“metre” exponent=“2”/>
<unit kind=“second” exponent=“-2”/>
Reorder based on kind
Checking units of the model
LHS RHS
<listOfUnits>
<unit kind=“kilogram” exponent=“1”/>
<unit kind=“metre” exponent=“2”/>
<unit kind=“second” exponent=“-2”/>
<listOfUnits>
<unit kind=“kilogram” exponent=“1”/>
<unit kind=“metre” exponent=“2”/>
<unit kind=“second” exponent=“-2”/>
NOTE: multiplier = 1 scale = 0 for all units here
Are the number of units the same ?
For each position is kind == kind
exponent == exponent
multiplier == multiplier
Note: scale == scale since it was ‘removed’
Checking units of the model
LHS RHS
<listOfUnits>
<unit kind=“kilogram” exponent=“1”/>
<unit kind=“metre” exponent=“2”/>
<unit kind=“second” exponent=“-2”/>
<listOfUnits>
<unit kind=“kilogram” exponent=“1”/>
<unit kind=“metre” exponent=“2”/>
<unit kind=“second” exponent=“-2”/>
identical
Checking units of the model
LHS RHS
<listOfUnits>
<unit kind=“metre”
exponent=“1”
multiplier=“1000”/>
<listOfUnits>
<unit kind=“metre”
exponent=“1”
multiplier=“1”/>
x km = y m
1 km = 1000 m
Difference is a numerical ‘scaling factor’
Checking units of the model
LHS RHS
<listOfUnits>
<unit kind=“metre”
exponent=“1”
multiplier=“1000”/>
<listOfUnits>
<unit kind=“metre”
exponent=“1”
multiplier=“1”/>
x km = y m
1 km = 1000 m
kind == kind
exponent == exponent
multiplier != multiplier
Checking units of the model
LHS RHS
<listOfUnits>
<unit kind=“metre”
exponent=“1”
multiplier=“1000”/>
<listOfUnits>
<unit kind=“metre”
exponent=“1”
multiplier=“1”/>
x km = y m
1 km = 1000 m
equivalent
Checking units of expressions
KT
dt
dS
*= rateRule
assignmentRule/initialAssignment/
eventAssignment
KTS *=
KT *
time
extent
=





kineticLaw
[ ] KT *time = delay
[ ] KT *essdimensionl = priority
equivalent
Checking units of expressions
KT
dt
dS
*= rateRule
assignmentRule/initialAssignment/
eventAssignment
KTS *=
KT *
time
extent
=





kineticLaw
[ ] KT *time = delay
[ ] KT *essdimensionl = priority
identical
checkConsistency()
Error Line 16 Column 25: (SBML Validation Rule #10513) When the
'variable' in an <assignmentRule> refers to a <parameter>, the units of the
rule's right-hand side are expected to be consistent with the units declared
for that parameter. Reference: L2V3 Section 4.11.3 Expected units are
metre (exponent = 1, multiplier = 1, scale = 0) but the units returned by the
<assignmentRule>'s <math> expression are metre (exponent = 1.33333,
multiplier = 1, scale = 0).
Checking units of the model
Lessons learnt
only allow base SI units
use only multiplier NOT multiplier and scale
enforce units on everything including numbers
If unit
consistency is
desired

Mais conteúdo relacionado

Semelhante a Checking units in libSBML

Semelhante a Checking units in libSBML (20)

Unit 2-data types,Variables,Operators,Conitionals,loops and arrays
Unit 2-data types,Variables,Operators,Conitionals,loops and arraysUnit 2-data types,Variables,Operators,Conitionals,loops and arrays
Unit 2-data types,Variables,Operators,Conitionals,loops and arrays
 
ScalaLanguage_ch_4_5.pptx
ScalaLanguage_ch_4_5.pptxScalaLanguage_ch_4_5.pptx
ScalaLanguage_ch_4_5.pptx
 
Vb script final pari
Vb script final pariVb script final pari
Vb script final pari
 
Introduction to golang
Introduction to golangIntroduction to golang
Introduction to golang
 
SPL 6 | Operators in C
SPL 6 | Operators in CSPL 6 | Operators in C
SPL 6 | Operators in C
 
Chapter 02
Chapter 02Chapter 02
Chapter 02
 
Mixed Effects Models - Data Processing
Mixed Effects Models - Data ProcessingMixed Effects Models - Data Processing
Mixed Effects Models - Data Processing
 
Radiation physics 2
Radiation physics 2Radiation physics 2
Radiation physics 2
 
Lecture 3&4
Lecture 3&4Lecture 3&4
Lecture 3&4
 
Lecture 3&4
Lecture 3&4Lecture 3&4
Lecture 3&4
 
Adding Uncertainty and Units to Quantity Types in Software Models
Adding Uncertainty and Units to Quantity Types in Software ModelsAdding Uncertainty and Units to Quantity Types in Software Models
Adding Uncertainty and Units to Quantity Types in Software Models
 
Computer programming 2 Lesson 10
Computer programming 2  Lesson 10Computer programming 2  Lesson 10
Computer programming 2 Lesson 10
 
4_A1208223655_21789_2_2018_04. Operators.ppt
4_A1208223655_21789_2_2018_04. Operators.ppt4_A1208223655_21789_2_2018_04. Operators.ppt
4_A1208223655_21789_2_2018_04. Operators.ppt
 
Ch. 1 lecture b
Ch. 1 lecture bCh. 1 lecture b
Ch. 1 lecture b
 
Introducing Swift v2.1
Introducing Swift v2.1Introducing Swift v2.1
Introducing Swift v2.1
 
C PRESENTATION.pptx
C PRESENTATION.pptxC PRESENTATION.pptx
C PRESENTATION.pptx
 
Cs1123 4 variables_constants
Cs1123 4 variables_constantsCs1123 4 variables_constants
Cs1123 4 variables_constants
 
CIS-166 Midterm
CIS-166 MidtermCIS-166 Midterm
CIS-166 Midterm
 
Midterm Winter 10
Midterm  Winter 10Midterm  Winter 10
Midterm Winter 10
 
Metrics and Measurement
Metrics and MeasurementMetrics and Measurement
Metrics and Measurement
 

Último

From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 

Último (20)

From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 

Checking units in libSBML

  • 1. Units in SBML and how libSBML checks them Sarah Keating
  • 2. Associate units with a variable • Use attributes in the SBML <compartment units=“ ” /> <species substanceUnits=“ ” /> <parameter units=“ ” />
  • 3. Associate units with a variable • Values that can be used ampere farad joule lux radian volt avogadro gram katal metre second watt becquerel gray kelvin mole siemens weber candela henry kilogram newton sievert coulomb hertz litre ohm steradian dimensionless item lumen pascal tesla
  • 4. Associate units with a variable • Use attributes in the SBML <compartment units=“litre” /> <species substanceUnits=“mole” /> <parameter units=“second” />
  • 5. Associate units with a variable • Values that can be used ampere farad joule lux radian volt avogadro gram katal metre second watt becquerel gray kelvin mole siemens weber candela henry kilogram newton sievert coulomb hertz litre ohm steradian dimensionless item lumen pascal tesla
  • 6. Associate units with a variable • Values that can be used ampere farad joule lux radian volt avogadro gram katal metre second watt becquerel gray kelvin mole siemens weber candela henry kilogram newton sievert coulomb hertz litre ohm steradian dimensionless item lumen pascal tesla
  • 7. Associate units with a variable • Values that can be used ampere farad joule lux radian volt avogadro gram katal metre second watt becquerel gray kelvin mole siemens weber candela henry kilogram newton sievert coulomb hertz litre ohm steradian dimensionless item lumen pascal tesla
  • 8. • Not one of the base units Associate units with a variable
  • 9. • Not one of the base units Associate units with a variable UnitDefinitions id of unitDefinition used as unit attribute
  • 10. Associate units with a variable <unitDefinition id=“my_metre”> <listOfUnits> <unit kind=“metre” scale=“0” multiplier=“1” exponent=“1”/> </listOfUnits> </unitDefinition> 1 id = (multiplier * 10scale * kind)exponent 1 my_metre = (1 * 100 * metre)1 = 1 m • Not one of the base units
  • 11. Associate units with a variable <unitDefinition id=“milligram”> <listOfUnits> <unit kind=“gram” scale=“-3” multiplier=“1” exponent=“1”/> </listOfUnits> </unitDefinition> 1 id = (multiplier * 10scale * kind)exponent 1 milligram = (1 * 10-3 * gram)1 = 0.001 g • Not one of the base units
  • 12. Associate units with a variable <unitDefinition id=“minute”> <listOfUnits> <unit kind=“second” scale=“0” multiplier=“60” exponent=“1”/> </listOfUnits> </unitDefinition> 1 id = (multiplier * 10scale * kind)exponent 1 minute= (60 * 100 * second)1 = 60 s • Not one of the base units
  • 13. Associate units with a variable <unitDefinition id=“metre_squared”> <listOfUnits> <unit kind=“metre” scale=“0” multiplier=“1” exponent=“2”/> </listOfUnits> </unitDefinition> 1 id = (multiplier * 10scale * kind)exponent 1 metre_squared= (1* 100 * metre)2 = 1 m2 • Not one of the base units
  • 14. Associate units with a variable <unitDefinition id=“minute_squared”> <listOfUnits> <unit kind=“second” scale=“0” multiplier=“60” exponent=“2”/> </listOfUnits> </unitDefinition> 1 id = (multiplier * 10scale * kind)exponent 1 minute2= (60* 100 * second)2 = (60 s)2 =3600 s2 • Not one of the base units
  • 15. Associate units with a variable <compartment units=“metre_squared” /> <species substanceUnits=“milligram” /> <parameter units=“minute” /> • Not one of the base units
  • 16. Associate units with a variable <unitDefinition id=“u0”> <listOfUnits> <unit kind=“metre” scale=“0” multiplier=“1” exponent=“2”/> <unit kind=“second” scale=“0” multiplier=“1” exponent=“-1”/> </listOfUnits> </unitDefinition> 1 id = (m1 * 10s1 * kind1)e1 * (m2 * 10s2 * kind2)e2 1 u0 = (1* 100 * metre)2 * (1* 100 * second)-1 = 1 m2s-1 • Combination of base units
  • 17. Checking units of variables compartment Spatial Dimensions Appropriate values for units attribute 0 dimensionless 1 metre OR id of unitDefinition with <unit kind=“metre” scale=“ ” multiplier=“ ” exponent=“1”/> OR length (predefined in L1/L2 NOT L3) 2 id of unitDefinition with <unit kind=“metre” scale=“ ” multiplier=“ ” exponent=“2”/> OR area (predefined in L1/L2 NOT L3) 3 litre OR id of unitDefinition with <unit kind=“litre” scale=“ ” multiplier=“ ” exponent=“1”/> OR id of unitDefinition with <unit kind=“metre” scale=“ ” multiplier=“ ” exponent=“3”/> OR volume (predefined in L1/L2 NOT L3)
  • 18. Checking units of variables compartment <compartment spatialDimensions=“3” units=“ ” /> Assumes units according to the spatialDimensions attribute L1/L2 predefined L3 from attribute on model length (m) lengthUnits area (m2) areaUnits volume (l) volumeUnits In L3 possible for the unit to be undeclared
  • 19. Checking units of variables Appropriate values for substanceUnits attribute dimensionless substance (predefined in L1/L2 NOT L3) mole OR id of unitDefinition with <unit kind=“mole” exponent=“1”/> item OR id of unitDefinition with <unit kind=“item” exponent=“1”/> kilogram OR id of unitDefinition with <unit kind=“kilogram” exponent=“1”/> gram OR id of unitDefinition with <unit kind=“gram” exponent=“1”/> avogadro (L3 ONLY) OR id of unitDefinition with <unit kind=“avogadro” exponent=“1”/> species
  • 20. Checking units of variables <species substanceUnits=“ ” /> L1/L2 predefined L3 from attribute on model substance (mol) substanceUnits In L3 possible for the substanceUnit to be undeclared species Assumes substance units
  • 21. Checking units of variables <species substanceUnits=“mole” hasOnlySubstanceUnits=“true” /> species Units of the species are those of substance ONLY
  • 22. Checking units of variables <species substanceUnits=“mole” hasOnlySubstanceUnits=“false” compartment=“c” /> species Substance units are as given for the species BUT Species has units of concentration [ ] [ ] [ ]tcompartmencontainingof speciesofunits units nitssubstanceU =
  • 23. Checking units of variables model <model lengthUnits=“” areaUnits=“” volumeUnits=“” substanceUnits=“” extentUnits=“” timeUnits=“” > L3 ONLY
  • 24. Checking units of variables checkConsistency() Warning Line 25 Column 88: (SBML Validation Rule #20608) The value of a <species>'s 'units' attribute is restricted. Reference: L3V1 Section 4.6.5 The value of a <species>'s 'substanceUnits' attribute can only be one of the following: 'substance', 'mole', 'item', 'gram', 'kilogram', 'dimensionless', 'avogadro' or the identifier of a <unitDefinition> derived from 'mole' (with an 'exponent' of '1'), 'item' (with an 'exponent' of '1'), 'gram' (with an 'exponent' of '1'), 'kilogram' (with an 'exponent' of '1'), 'avogadro' (with an 'exponent' of '1') or 'dimensionless'.
  • 25. Checking units of variables UnitDefinition::isVariantOfArea() UnitDefinition::isVariantOfLength() UnitDefinition::isVariantOfMass() UnitDefinition::isVariantOfVolume() UnitDefinition::isVariantOfDimensionless() UnitDefinition::isVariantOfSubstance()
  • 26. Checking units of expressions <assignmentRule variable=“S”> <math xmlns=“http://www.w3.org/1998/Math/MathML” <apply> <times/> <ci> T </ci> <ci> K </ci> </apply> </math> </assignmentRule>
  • 27. Checking units of expressions KT dt dS *= rateRule assignmentRule/initialAssignment/ eventAssignment KTS *= KT * time extent =      kineticLaw [ ] KT *time = delay [ ] KT *essdimensionl = priority
  • 28. Checking units of expressions If all units have been declared - know the units of S, T and K - can work out the units of ‘T * K’ (RHS) - can verify that the units of LHS match the units of RHS
  • 29. Checking units of expressions BUT
  • 30. Checking units of expressions If all units have been declared - know the units of S, T and K - can we work out the units of RHS - can verify that the units of LHS match the units of RHS
  • 31. Checking units of expressions Is the math correct ???? divide T Abstract Syntax Tree T ÷ K K Are the number of arguments correct ?
  • 32. Checking units of expressions Is the math correct ???? Are the number of arguments correct ? Class of function Number of arguments Example unary one sin binary two divide nary zero or more times at_least_two two or more equals special can vary piecewise minus root log
  • 33. checkConsistency() Error Line 5 Column 12: (SBML Validation Rule #10218) A MathML operator must be supplied the number of arguments appropriate for that operator. Reference: L3V1 Section 3.4.1 The formula 'piecewise()' in the math element of the Constraint has an inappropriate number of arguments. Checking units of expressions
  • 34. Checking units of expressions Is the math correct ???? eq T T == K K Are the types of arguments correct ? For example: 3.4 == false 3.4 && false sin(false) are all INVALID
  • 35. Checking units of expressions Is the math correct ???? Are the types of arguments correct ? Class of function Type of arguments Example numeric numeric divide logical boolean and special either logical or numeric but must all be same type equals piecewise conditional must be boolean optional returns must be same type
  • 36. checkConsistency() Error Line 12 Column 15: (SBML Validation Rule #10212) The types of values within <piecewise> operators must all be consistent: the set of expressions that make up the first arguments of the <piece> and <otherwise> operators within the same <piecewise> operator should all return values of the same type. Reference: L3V1 Section 3.4.9 The piecewise formula in the math element of the AlgebraicRule returns arguments which have different value types from the first element 'p * 6'. Checking units of expressions
  • 37. Checking units of expressions Is the math correct ???? Are the number of arguments correct ? Are the types of arguments correct ? if not UNIT checking will fail
  • 38. Checking units of expressions plus T T + K K units of arguments MUST be IDENTICAL are the units appropriate for the math ??
  • 39. Checking units of expressions times T T * K K no restrictions are the units appropriate for the math ??
  • 40. Checking units of expressions sin T sin(T) units of argument MUST be DIMENSIONLESS are the units appropriate for the math ??
  • 41. checkConsistency() Warning Line 16 Column 23: (SBML Validation Rule #10501) The units of the expressions used as arguments to a function call are expected to match the units expected for the arguments of that function. The formula 'p + p1' in the math element of the AlgebraicRule can only act on variables with the same units. Checking units of expressions
  • 42. Checking units of expressions math number of arguments math types of arguments units of arguments
  • 43. Checking units of expressions times T T * K K Units of this node: units of T times the units of K
  • 44. Checking units of expressions times T T * K K Units of this node: units of T times the units of K creates a UnitDefinition that represents the units of the node and caches it to reduce computation time
  • 45. Checking units of expressions plus T T + K K Units of this node: units of T
  • 46. Checking units of expressions plus T T + K K Units of this node: units of TWARNING: if units of T are not identical to the units of K this expression is illegal
  • 47. Checking units of expressions plus T T + K K Units of this node: units of T OR if T has no units declared node will have units of K records whether an expression has undeclared units and whether they can be ignored
  • 48. Class of node Units returned Example dimensionless dimensionless sin/and same units identical to the arguments plus/abs calculated units must be calculated for the expression times divide power root determined units will be returned by certain arguments piecewise delay numbers undeclared (L3 can declare them) variables units appropriate to the component represented id of species Checking units of expressions
  • 49. Checking units of expressions plus T Kroot 2 K piece wise S Ktimes T S geq G 2 floor T
  • 50. Checking units of the model loops through whole model creates data structure for each element Member in structure Stores information about UnitReferenceId identifier that relates the data structure to the SBML component ContainsUndeclaredUnits records whether an expression contained variables or numbers for which there were no units available true if it does CanIgnoreUndeclaredUnits determines whether the unit of an expression with undeclared units is accurate or not true if the units are accurate UnitDefinition a unitDefinition element that represents the units PerTimeUnitDefinition UnitDefinition with the addition of a per time unit
  • 51. Checking units of the model tests the units for each expression by retrieving the unitDefinitions for the RHS and the LHS and checking that they are equivalent/identical remove scale from any units (change to multiplier) 2 * 102 m == 20 * 101 m == 200 m <unit kind=“metre” scale=“2” multiplier=“2” exponent=“1”/> <unit kind=“metre” scale=“1” multiplier=“20” exponent=“1”/> <unit kind=“metre” scale=“0” multiplier=“200” exponent=“1”/ Identical BUT do not want to compare two figures
  • 52. Checking units of the model tests the units for each expression by retrieving the unitDefinitions for the RHS and the LHS and checking that they are equivalent/identical convert both unitDefinitions to base SI loop thru the units and check they are equivalent/identical remove scale from any units (change to multiplier) simplify and order the units alphabetically
  • 53. Checking units of the model LHS RHS <listOfUnits> <unit kind=“newton” exponent=“1”/> <unit kind=“metre” exponent=“1”/> <listOfUnits> <unit kind=“watt” exponent=“1”/> <unit kind=“second” exponent=“1”/> NOTE: multiplier = 1 scale = 0 for all units here
  • 54. Checking units of the model LHS RHS <listOfUnits> <unit kind=“newton” exponent=“1”/> <unit kind=“metre” exponent=“1”/> <listOfUnits> <unit kind=“watt” exponent=“1”/> <unit kind=“second” exponent=“1”/> LHS
  • 55. Checking units of the model LHS RHS <listOfUnits> <unit kind=“metre” exponent=“1”/> <unit kind=“kilogram” exponent=“1”/> <unit kind=“second” exponent=“-2”/> <unit kind=“metre” exponent=“1”/> <listOfUnits> <unit kind=“watt” exponent=“1”/> <unit kind=“second” exponent=“1”/> Convert to base SI
  • 56. Checking units of the model LHS RHS <listOfUnits> <unit kind=“metre” exponent=“2”/> <unit kind=“kilogram” exponent=“1”/> <unit kind=“second” exponent=“-2”/> <listOfUnits> <unit kind=“watt” exponent=“1”/> <unit kind=“second” exponent=“1”/> Simplify
  • 57. Checking units of the model LHS RHS <listOfUnits> <unit kind=“kilogram” exponent=“1”/> <unit kind=“metre” exponent=“2”/> <unit kind=“second” exponent=“-2”/> <listOfUnits> <unit kind=“watt” exponent=“1”/> <unit kind=“second” exponent=“1”/> Reorder based on kind
  • 58. Checking units of the model LHS RHS <listOfUnits> <unit kind=“kilogram” exponent=“1”/> <unit kind=“metre” exponent=“2”/> <unit kind=“second” exponent=“-2”/> <listOfUnits> <unit kind=“watt” exponent=“1”/> <unit kind=“second” exponent=“1”/> RHS
  • 59. Checking units of the model LHS RHS <listOfUnits> <unit kind=“kilogram” exponent=“1”/> <unit kind=“metre” exponent=“2”/> <unit kind=“second” exponent=“-2”/> <listOfUnits> <unit kind=“metre” exponent=“2”/> <unit kind=“kilogram” exponent=“1”/> <unit kind=“second” exponent=“-3”/> <unit kind=“second” exponent=“1”/> Convert to base SI
  • 60. Checking units of the model LHS RHS <listOfUnits> <unit kind=“kilogram” exponent=“1”/> <unit kind=“metre” exponent=“2”/> <unit kind=“second” exponent=“-2”/> <listOfUnits> <unit kind=“metre” exponent=“2”/> <unit kind=“kilogram” exponent=“1”/> <unit kind=“second” exponent=“-2”/> Simplify
  • 61. Checking units of the model LHS RHS <listOfUnits> <unit kind=“kilogram” exponent=“1”/> <unit kind=“metre” exponent=“2”/> <unit kind=“second” exponent=“-2”/> <listOfUnits> <unit kind=“kilogram” exponent=“1”/> <unit kind=“metre” exponent=“2”/> <unit kind=“second” exponent=“-2”/> Reorder based on kind
  • 62. Checking units of the model LHS RHS <listOfUnits> <unit kind=“kilogram” exponent=“1”/> <unit kind=“metre” exponent=“2”/> <unit kind=“second” exponent=“-2”/> <listOfUnits> <unit kind=“kilogram” exponent=“1”/> <unit kind=“metre” exponent=“2”/> <unit kind=“second” exponent=“-2”/> NOTE: multiplier = 1 scale = 0 for all units here Are the number of units the same ? For each position is kind == kind exponent == exponent multiplier == multiplier Note: scale == scale since it was ‘removed’
  • 63. Checking units of the model LHS RHS <listOfUnits> <unit kind=“kilogram” exponent=“1”/> <unit kind=“metre” exponent=“2”/> <unit kind=“second” exponent=“-2”/> <listOfUnits> <unit kind=“kilogram” exponent=“1”/> <unit kind=“metre” exponent=“2”/> <unit kind=“second” exponent=“-2”/> identical
  • 64. Checking units of the model LHS RHS <listOfUnits> <unit kind=“metre” exponent=“1” multiplier=“1000”/> <listOfUnits> <unit kind=“metre” exponent=“1” multiplier=“1”/> x km = y m 1 km = 1000 m Difference is a numerical ‘scaling factor’
  • 65. Checking units of the model LHS RHS <listOfUnits> <unit kind=“metre” exponent=“1” multiplier=“1000”/> <listOfUnits> <unit kind=“metre” exponent=“1” multiplier=“1”/> x km = y m 1 km = 1000 m kind == kind exponent == exponent multiplier != multiplier
  • 66. Checking units of the model LHS RHS <listOfUnits> <unit kind=“metre” exponent=“1” multiplier=“1000”/> <listOfUnits> <unit kind=“metre” exponent=“1” multiplier=“1”/> x km = y m 1 km = 1000 m equivalent
  • 67. Checking units of expressions KT dt dS *= rateRule assignmentRule/initialAssignment/ eventAssignment KTS *= KT * time extent =      kineticLaw [ ] KT *time = delay [ ] KT *essdimensionl = priority equivalent
  • 68. Checking units of expressions KT dt dS *= rateRule assignmentRule/initialAssignment/ eventAssignment KTS *= KT * time extent =      kineticLaw [ ] KT *time = delay [ ] KT *essdimensionl = priority identical
  • 69. checkConsistency() Error Line 16 Column 25: (SBML Validation Rule #10513) When the 'variable' in an <assignmentRule> refers to a <parameter>, the units of the rule's right-hand side are expected to be consistent with the units declared for that parameter. Reference: L2V3 Section 4.11.3 Expected units are metre (exponent = 1, multiplier = 1, scale = 0) but the units returned by the <assignmentRule>'s <math> expression are metre (exponent = 1.33333, multiplier = 1, scale = 0). Checking units of the model
  • 70. Lessons learnt only allow base SI units use only multiplier NOT multiplier and scale enforce units on everything including numbers If unit consistency is desired