-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix/substanceState: Add "WholeBlood" to cmd_bio subGenerator
GenData did not have a case for Classification = WholeBlood, so subs with this classification were not correctly parsed. Change "State" of antigens to "Molecular" because previous value of "Cellular" did not exist on schema.
- Loading branch information
1 parent
6d97dfb
commit 10817ee
Showing
36 changed files
with
112 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,54 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<Substance xmlns="uri:/mil/tatrc/physiology/datamodel" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" contentVersion="BioGears_6.1.1-beta" xsi:schemaLocation=""> | ||
<Name>Acetaminophen</Name> | ||
<Density readOnly="false" unit="g/cm^3" value="1.293"/> | ||
<MolarMass value="151.163" unit="g/mol"/> | ||
<State>Solid</State> | ||
<Clearance> | ||
<Systemic> | ||
<FractionExcretedInFeces value="0.0"/> | ||
<FractionUnboundInPlasma value="0.9"/> | ||
<IntrinsicClearance value="0.5" unit="mL/min kg"/> | ||
<RenalClearance value="4.5" unit="mL/min kg"/> | ||
<SystemicClearance value="0.5" unit="mL/min kg"/> | ||
</Systemic> | ||
<RenalDynamics> | ||
<Clearance readOnly="false" unit="mL/min kg" value="4.5"/> | ||
</RenalDynamics> | ||
</Clearance> | ||
<Pharmacokinetics> | ||
<Physicochemicals> | ||
<AcidDissociationConstant readOnly="false" value="9.78"/> | ||
<BindingProtein>Albumin</BindingProtein> | ||
<BloodPlasmaRatio readOnly="false" value="1.05"/> | ||
<FractionUnboundInPlasma readOnly="false" value="0.9"/> | ||
<IonicState>Acid</IonicState> | ||
<LogP readOnly="false" value="0.46"/> | ||
<HydrogenBondCount readOnly="false" value="4"/> | ||
<PolarSurfaceArea readOnly="false" value="49.3"/> | ||
</Physicochemicals> | ||
</Pharmacokinetics> | ||
<Pharmacodynamics> | ||
<Bronchodilation readOnly="false" value="0"/> | ||
<DiastolicPressureModifier readOnly="false" value="0.0"/> | ||
<EC50 readOnly="false" unit="ug/mL" value="5.17"/> | ||
<EMaxShapeParameter readOnly="false" value="9.98"/> | ||
<FeverModifier readOnly="false" value="0.1"/> | ||
<HeartRateModifier readOnly="false" value="0.0"/> | ||
<HemorrhageModifier readOnly="false" value="0"/> | ||
<NeuromuscularBlock readOnly="false" value="0"/> | ||
<PainModifier readOnly="false" value="0.05"/> | ||
<PupillaryResponse> | ||
<ReactivityModifier readOnly="false" value="0.0"/> | ||
<SizeModifier readOnly="false" value="0.0"/> | ||
</PupillaryResponse> | ||
<RespirationRateModifier readOnly="false" value="0.0"/> | ||
<Sedation readOnly="false" value="0"/> | ||
<SystolicPressureModifier readOnly="false" value="0.0"/> | ||
<TidalVolumeModifier readOnly="false" value="0"/> | ||
<TubularPermeabilityModifier readOnly="false" value="0"/> | ||
<CentralNervousModifier readOnly="false" value="0"/> | ||
<AntibacterialEffect readOnly="false" unit="1/hr" value="0"/> | ||
<EffectSiteRateConstant readOnly="false" unit="1/min" value="0.0"/> | ||
</Pharmacodynamics> | ||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?> | ||
<Substance xmlns="uri:/mil/tatrc/physiology/datamodel" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="uri:/mil/tatrc/physiology/datamodel BioGears.xsd"> | ||
<Name>Acetaminophen</Name> | ||
<Density readOnly="false" unit="g/cm^3" value="1.293"/> | ||
<MolarMass readOnly="false" unit="g/mol" value="151.163"/> | ||
<State>Solid</State> | ||
<Clearance> | ||
<Systemic> | ||
<FractionExcretedInFeces readOnly="false" value="0"/> | ||
<FractionUnboundInPlasma readOnly="false" value="0.9"/> | ||
<IntrinsicClearance readOnly="false" unit="mL/min kg" value="0.5"/> | ||
<RenalClearance readOnly="false" unit="mL/min kg" value="4.5"/> | ||
<SystemicClearance readOnly="false" unit="mL/min kg" value="0.5"/> | ||
</Systemic> | ||
<RenalDynamics> | ||
<Clearance readOnly="false" unit="mL/min kg" value="4.5"/> | ||
</RenalDynamics> | ||
</Clearance> | ||
<Pharmacokinetics> | ||
<Physicochemicals> | ||
<AcidDissociationConstant readOnly="false" value="9.78"/> | ||
<BindingProtein>Albumin</BindingProtein> | ||
<BloodPlasmaRatio readOnly="false" value="1.05"/> | ||
<FractionUnboundInPlasma readOnly="false" value="0.9"/> | ||
<IonicState>Acid</IonicState> | ||
<LogP readOnly="false" value="0.46"/> | ||
<HydrogenBondCount readOnly="false" value="4"/> | ||
<PolarSurfaceArea readOnly="false" value="49.3"/> | ||
</Physicochemicals> | ||
</Pharmacokinetics> | ||
<Pharmacodynamics> | ||
<Bronchodilation readOnly="false" value="0"/> | ||
<DiastolicPressureModifier readOnly="false" value="0"/> | ||
<EC50 readOnly="false" unit="" value="5.17"/> | ||
<EMaxShapeParameter readOnly="false" value="9.98"/> | ||
<FeverModifier readOnly="false" value="0.1"/> | ||
<HeartRateModifier readOnly="false" value="0"/> | ||
<HemorrhageModifier readOnly="false" value="0"/> | ||
<NeuromuscularBlock readOnly="false" value="0"/> | ||
<PainModifier readOnly="false" value="0.05"/> | ||
<PupillaryResponse> | ||
<ReactivityModifier readOnly="false" value="0"/> | ||
<SizeModifier readOnly="false" value="0"/> | ||
</PupillaryResponse> | ||
<RespirationRateModifier readOnly="false" value="0"/> | ||
<Sedation readOnly="false" value="0"/> | ||
<SystolicPressureModifier readOnly="false" value="0"/> | ||
<TidalVolumeModifier readOnly="false" value="0"/> | ||
<TubularPermeabilityModifier readOnly="false" value="0"/> | ||
<CentralNervousModifier readOnly="false" value="0"/> | ||
<AntibacterialEffect readOnly="false" unit="1/hr" value="0"/> | ||
<EffectSiteRateConstant readOnly="false" unit="1/min" value="0"/> | ||
</Pharmacodynamics> | ||
</Substance> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.