Rendering of the source text

<?xml version='1.0' encoding='utf-8'?>
<!--  FILE :  herz_model_1996.xml

CREATED :  3rd December 2003

LAST MODIFIED : 3rd December 2003

AUTHOR :  Catherine Lloyd
          Bioengineering Institute
          The University of Auckland
          
MODEL STATUS :  This model conforms to the CellML 1.0 Specification released on
10th August 2001, and the 16/1/02 CellML Metadata 1.0 Specification.

DESCRIPTION :  This file contains a CellML description of Herz et al.'s 1996 mathematical model of viral dynamics in vivo.
CHANGES:  
  
--><model xmlns="http://www.cellml.org/cellml/1.0#" xmlns:cmeta="http://www.cellml.org/metadata/1.0#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqs="http://www.cellml.org/bqs/1.0#" xmlns:cellml="http://www.cellml.org/cellml/1.0#" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:vCard="http://www.w3.org/2001/vcard-rdf/3.0#" cmeta:id="herz_bonhoeffer_anderson_may_nowak_1996_version01" name="herz_bonhoeffer_anderson_may_nowak_1996_version01">
<documentation xmlns="http://cellml.org/tmp-documentation">
<article>
  <articleinfo>
  <title>Modelling Viral Dynamics In Vivo</title>
  <author>
    <firstname>Catherine</firstname>
          <surname>Lloyd</surname>
    <affiliation>
      <shortaffil>Bioengineering Institute, University of Auckland</shortaffil>
    </affiliation>
  </author>
</articleinfo>
  <section id="sec_status">
    <title>Model Status</title>
    <para>
            This model contains time delays and is unsuitable for solution using CellML. There are additional problems with the model, but the presence of time delays rendered these superfluous. 
          </para>
  </section>
  <sect1 id="sec_structure">
<title>Model Structure</title>

<para>
Clinical studies of drug therapy in patients infected with HIV-1 or the hepatitis B virus provide the opportunity for estimating the kinetic constants of virus replication <emphasis>in vivo</emphasis>.  Treatment of HIV-1 with protease inhibitors results in the decline of free virus in several distinct phases:  Initially the plasma virus load remains virtually unchanged, then after this initial delay, the plasma load declines exponentially, due to the decreased virus synthesis in infected cells, and also due to the clearance of free virus particles.  Finally, the rate of virus decline decreases, and the viral load may even begin to increase again as the virus evolves a resistance to the protease inhibitor.
</para>

<para>
This publication by Herz <emphasis>et al.</emphasis> quickly followed an article by <ulink url="${HTML_EXMPL_PERELSON_MODEL}">Perelson <emphasis>et al.</emphasis> (1996)</ulink> in which they developed a mathematical model of HIV-1 dynamics <emphasis>in vivo</emphasis> based on their experimental data.  In this current publication, Herz <emphasis>et al.</emphasis> develop a new model that provides a description of HIV-1 dynamics, including the effects of an intracellular delay (the period between infection of a cell and the production of new virus particles).  This model accounts for the effects of a protease inhibitor on the rate of viral synthesis (see <xref linkend="fig_cell_diagram"/> below), and it has been encoded in CellML and can be downloaded in various formats in <xref linkend="sec_download_this_model"/>.    
</para> 

<para>
The complete original paper reference is cited below:
</para>

<para>
Limitations on estimates of intracellular delay and virus decay, Andreas V. M. Herz, Sebastian Bonhoeffer, Roy M. Anderson, Robert M. May, and Martin A. Nowak, 1996, <emphasis>Proceedings of the National Academy of Science, USA</emphasis>, 93, 7247-7251.  <ulink url="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=PubMed&amp;list_uids=8692977&amp;dopt=Abstract">PubMed ID: 8692977</ulink>
</para>

<informalfigure float="0" id="fig_cell_diagram">
<mediaobject>
  <imageobject>
    <objectinfo>
      <title>cell diagram</title>
    </objectinfo>
    <imagedata fileref="herz_1996.png"/>
  </imageobject>
</mediaobject>
<caption>Schematic summary of the dynamics of viral infection <emphasis>in vivo</emphasis>.</caption>
</informalfigure>

<para>
Model simulations revealed that the half-life of the infected cells can be calculated with reasonable accuracy from clinical data.  However, the remaining parameters can not be accurately predicted from the current model, more data is needed.     
</para>

</sect1>
</article>
</documentation>

  
  
  <units name="per_mm3">
    <unit units="metre" prefix="milli" exponent="-3"/>
  </units>
  
  <units name="hour">
    <unit units="second" multiplier="3600.0"/>
  </units>
  
  <units name="day">
    <unit units="second" exponent="-1" multiplier="86400.0"/>
  </units>
  
  <units name="first_order_rate_constant">
    <unit units="day" exponent="-1"/>
  </units>
  
  
  <component name="environment">
    <variable units="day" public_interface="out" name="time"/>
  </component>
  
  <component name="x" cmeta:id="x">
    <rdf:RDF>
      <rdf:Description rdf:about="x">
        <dc:title>x</dc:title>
        <dcterms:alternative>uninfected cells</dcterms:alternative>  
      </rdf:Description>
    </rdf:RDF>  
    <variable units="per_mm3" public_interface="out" name="x"/>
    
    <variable units="first_order_rate_constant" name="lamda"/>
    
    <variable units="first_order_rate_constant" public_interface="in" name="beta"/>
    <variable units="per_mm3" public_interface="in" name="vI"/>
    <variable units="day" public_interface="in" name="time"/>
    
    <math xmlns="http://www.w3.org/1998/Math/MathML"> 
      <apply>
        <eq/> 
        <apply>
          <diff/> 
          <bvar>
            <ci>time</ci>
          </bvar> 
          <ci>x</ci> 
        </apply>
        <apply>
          <minus/>
          <ci> lamda </ci>
          <apply>
            <plus/>
            <ci> x </ci>
            <apply>
              <times/>
              <ci> beta </ci>
              <ci> x </ci> 
              <ci> vI </ci>
            </apply> 
          </apply>
        </apply>
      </apply>    
    </math>
  </component>
  
  <component name="y" cmeta:id="y">
    <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about="y">
        <dc:title>y</dc:title>
        <dcterms:alternative>virus producing infected cells</dcterms:alternative>  
      </rdf:Description>
    </rdf:RDF>  
    <variable units="per_mm3" public_interface="out" name="y"/>
    
    <variable units="hour" name="tau" initial_value="12.0"/>
    <variable units="first_order_rate_constant" name="a" initial_value="0.5"/>
    <variable units="first_order_rate_constant" name="a_"/>
    
    <variable units="first_order_rate_constant" public_interface="in" name="beta"/>
    <variable units="per_mm3" public_interface="in" name="x"/>
    <variable units="per_mm3" public_interface="in" name="vI"/>
    <variable units="day" public_interface="in" name="time"/>
    
    <math xmlns="http://www.w3.org/1998/Math/MathML"> 
      <apply>
        <eq/> 
        <apply>
          <diff/> 
          <bvar>
            <ci>time</ci>
          </bvar> 
          <ci>y</ci> 
        </apply>
        <apply>
          <minus/>
          <apply>
            <times/>
            <ci> beta </ci>
            <apply>
              <minus/>
              <ci> time </ci>
              <ci> tau </ci>
            </apply> 
            <ci> x </ci>
            <apply>
              <minus/>
              <ci> time </ci>
              <ci> tau </ci>
            </apply>
            <ci> vI </ci>
            <apply>
              <minus/>
              <ci> time </ci>
              <ci> tau </ci>
            </apply>
            <apply>
              <exp/>
              <apply>
                <times/>
                <ci> a_ </ci>
                <ci> tau </ci>
              </apply> 
            </apply> 
          </apply>
          <apply>
            <times/>
            <ci> a </ci>
            <ci> y </ci>
          </apply> 
        </apply>
      </apply>    
    </math>
  </component>
  
  <component name="v" cmeta:id="v">
    <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about="v">
        <dc:title>v</dc:title>
        <dcterms:alternative>plasma virus</dcterms:alternative>  
      </rdf:Description>
    </rdf:RDF>  
    <variable units="per_mm3" name="v"/>
    <variable units="first_order_rate_constant" name="k"/>
    
    <variable units="first_order_rate_constant" public_interface="in" name="u"/>
    <variable units="per_mm3" public_interface="in" name="y"/>
    <variable units="day" public_interface="in" name="time"/>
    
    <math xmlns="http://www.w3.org/1998/Math/MathML"> 
      <apply>
        <eq/> 
        <apply>
          <diff/> 
          <bvar>
            <ci>time</ci>
          </bvar> 
          <ci>v</ci> 
        </apply>
        <apply>
          <minus/>
          <apply>
            <times/>
            <ci> k </ci>
            <ci> y </ci>
          </apply>
          <apply>
            <times/>
            <ci> u </ci>
            <ci> v </ci>
          </apply>
        </apply>
      </apply>    
    </math>
  </component>
  
  <component name="vI" cmeta:id="vI">
    <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about="vI">
        <dc:title>vI</dc:title>
        <dcterms:alternativIe>infectious plasma virus</dcterms:alternativIe>  
      </rdf:Description>
    </rdf:RDF>  
    <variable units="per_mm3" public_interface="out" name="vI"/>
    
    <variable units="first_order_rate_constant" public_interface="in" name="u"/>
    <variable units="day" public_interface="in" name="time"/>
    
    <math xmlns="http://www.w3.org/1998/Math/MathML"> 
      <apply>
        <eq/> 
        <apply>
          <diff/> 
          <bvar>
            <ci>time</ci>
          </bvar> 
          <ci>vI</ci> 
        </apply>
        <apply>
          <minus/>
          <apply>
            <times/>
            <ci> u </ci>
            <ci> vI </ci>
          </apply>
        </apply>
      </apply>    
    </math>
  </component>
  
  <component name="kinetic_parameters"> 
    <variable units="first_order_rate_constant" public_interface="out" name="beta"/>
    <variable units="first_order_rate_constant" public_interface="out" name="u" initial_value="3.0"/>
  </component>
  
  
  <connection>
    <map_components component_2="environment" component_1="x"/>
    <map_variables variable_2="time" variable_1="time"/>
  </connection>
  
  <connection>
    <map_components component_2="environment" component_1="v"/>
    <map_variables variable_2="time" variable_1="time"/>
  </connection>
  
  <connection>
    <map_components component_2="environment" component_1="vI"/>
    <map_variables variable_2="time" variable_1="time"/>
  </connection>
  
  <connection>
    <map_components component_2="environment" component_1="y"/>
    <map_variables variable_2="time" variable_1="time"/>
  </connection>
  
  <connection>
    <map_components component_2="vI" component_1="x"/>
    <map_variables variable_2="vI" variable_1="vI"/>
  </connection>
  
  <connection>
    <map_components component_2="kinetic_parameters" component_1="x"/>
    <map_variables variable_2="beta" variable_1="beta"/>
  </connection>
  
  <connection>
    <map_components component_2="kinetic_parameters" component_1="y"/>
    <map_variables variable_2="beta" variable_1="beta"/>
  </connection>
  
  <connection>
    <map_components component_2="kinetic_parameters" component_1="v"/>
    <map_variables variable_2="u" variable_1="u"/>
  </connection>
  
  <connection>
    <map_components component_2="kinetic_parameters" component_1="vI"/>
    <map_variables variable_2="u" variable_1="u"/>
  </connection>
  
  <connection>
    <map_components component_2="x" component_1="y"/>
    <map_variables variable_2="x" variable_1="x"/>
  </connection>
  
  <connection>
    <map_components component_2="vI" component_1="y"/>
    <map_variables variable_2="vI" variable_1="vI"/>
  </connection>
  
  <connection>
    <map_components component_2="v" component_1="y"/>
    <map_variables variable_2="y" variable_1="y"/>
  </connection>
  





<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
  <rdf:Bag rdf:about="rdf:#128bb5a0-7339-4b56-ac68-c8fbece4c068">
    <rdf:li>immunology</rdf:li>
    <rdf:li>viral dynamics</rdf:li>
  </rdf:Bag>
  <rdf:Seq rdf:about="rdf:#citationAuthorsSeq">
    <rdf:li rdf:resource="rdf:#author1Vcard"/>
    <rdf:li rdf:resource="rdf:#author2Vcard"/>
    <rdf:li rdf:resource="rdf:#author3Vcard"/>
    <rdf:li rdf:resource="rdf:#author4Vcard"/>
    <rdf:li rdf:resource="rdf:#author5Vcard"/>
  </rdf:Seq>
  <rdf:Description rdf:about="rdf:#12524eb8-bc5d-4276-9086-c92355e0ca70">
    <dc:title>Proceedings of the National Academy of Science, USA</dc:title>
  </rdf:Description>
  <rdf:Description rdf:about="rdf:#e7b0bce7-f5b8-4a64-a996-aeda92bfa47f">
    <dc:creator rdf:resource="rdf:#citationAuthorsSeq"/>
    <dc:title>Viral Dynamics in vivo: Limitations on estimates of intracellular delay and virus decay</dc:title>
    <bqs:volume>93</bqs:volume>
    <bqs:first_page>7247</bqs:first_page>
    <bqs:Journal rdf:resource="rdf:#12524eb8-bc5d-4276-9086-c92355e0ca70"/>
    <dcterms:issued rdf:resource="rdf:#28cb412a-6670-4052-886b-60f2e2d1c7cb"/>
    <bqs:last_page>7251</bqs:last_page>
  </rdf:Description>
  <rdf:Description rdf:about="rdf:#7fb1dc5d-c51d-411f-9d89-664f3294ea54">
    <dcterms:W3CDTF>2003-12-03</dcterms:W3CDTF>
  </rdf:Description>
  <rdf:Description rdf:about="rdf:#author4Vcard">
    <rdf:type rdf:resource="http://www.cellml.org/bqs/1.0#Person"/>
    <vCard:N rdf:resource="rdf:#author4VcardN"/>
  </rdf:Description>
  <rdf:Description rdf:about="rdf:#author1Vcard">
    <rdf:type rdf:resource="http://www.cellml.org/bqs/1.0#Person"/>
    <vCard:N rdf:resource="rdf:#author1VcardN"/>
  </rdf:Description>
  <rdf:Description rdf:about="rdf:#62c98dd5-2f20-4636-905a-a7939fe5341c">
    <vCard:Given>Catherine</vCard:Given>
    <vCard:Family>Lloyd</vCard:Family>
    <vCard:Other>May</vCard:Other>
  </rdf:Description>
  <rdf:Description rdf:about="rdf:#author3VcardN">
    <vCard:Given>Roy</vCard:Given>
    <vCard:Family>Anderson</vCard:Family>
    <vCard:Other>M</vCard:Other>
  </rdf:Description>
  <rdf:Description rdf:about="rdf:#author2VcardN">
    <vCard:Given>Sebastian</vCard:Given>
    <vCard:Family>Bonhoeffer</vCard:Family>
  </rdf:Description>
  <rdf:Description rdf:about="rdf:#3b573009-55ba-43fa-a8a7-ad95ca0cdcf2">
    <rdf:type rdf:resource="http://imc.org/vCard/3.0#internet"/>
    <rdf:value>c.lloyd@auckland.ac.nz</rdf:value>
  </rdf:Description>
  <rdf:Description rdf:about="rdf:#770e92e4-f18f-4806-914e-9cb52a7f7421">
    <bqs:Pubmed_id>8692977</bqs:Pubmed_id>
    <bqs:JournalArticle rdf:resource="rdf:#e7b0bce7-f5b8-4a64-a996-aeda92bfa47f"/>
  </rdf:Description>
  <rdf:Description rdf:about="rdf:#author2Vcard">
    <rdf:type rdf:resource="http://www.cellml.org/bqs/1.0#Person"/>
    <vCard:N rdf:resource="rdf:#author2VcardN"/>
  </rdf:Description>
  <rdf:Description rdf:about="rdf:#10f7b5f5-146e-4a87-8ab4-f3f3ddb5afc9">
    <dc:subject rdf:resource="rdf:#7ad85ca9-5862-41ed-ad1c-67b0b28d4802"/>
  </rdf:Description>
  <rdf:Description rdf:about="rdf:#author5VcardN">
    <vCard:Given>Martin</vCard:Given>
    <vCard:Family>Nowak</vCard:Family>
    <vCard:Other>A</vCard:Other>
  </rdf:Description>
  <rdf:Description rdf:about="">
    <dc:publisher>
        The University of Auckland, Bioengineering Institute
      </dc:publisher>
    <dcterms:created rdf:resource="rdf:#7fb1dc5d-c51d-411f-9d89-664f3294ea54"/>
    <dc:creator rdf:resource="rdf:#04c80acf-524d-41d0-84d1-edf64d6b9101"/>
  </rdf:Description>
  <rdf:Description rdf:about="#herz_bonhoeffer_anderson_may_nowak_1996_version01">
    <dc:title>
        Herz et al.'s 1996 mathematical model of viral dynamics in vivo.
      </dc:title>
    <cmeta:comment rdf:resource="rdf:#8aa08a4c-3753-4940-9286-979ad8c5cc48"/>
    <bqs:reference rdf:resource="rdf:#10f7b5f5-146e-4a87-8ab4-f3f3ddb5afc9"/>
    <bqs:reference rdf:resource="rdf:#770e92e4-f18f-4806-914e-9cb52a7f7421"/>
  </rdf:Description>
  <rdf:Description rdf:about="rdf:#8aa08a4c-3753-4940-9286-979ad8c5cc48">
    <dc:creator rdf:resource="rdf:#367786ae-72ed-493e-9e56-6fadf537d41d"/>
    <rdf:value>This is the CellML description of Herz et al.'s 1996 mathematical model of viral dynamics in vivo.</rdf:value>
  </rdf:Description>
  <rdf:Description rdf:about="rdf:#7ad85ca9-5862-41ed-ad1c-67b0b28d4802">
    <bqs:subject_type>keyword</bqs:subject_type>
    <rdf:value rdf:resource="rdf:#128bb5a0-7339-4b56-ac68-c8fbece4c068"/>
  </rdf:Description>
  <rdf:Description rdf:about="rdf:#author3Vcard">
    <rdf:type rdf:resource="http://www.cellml.org/bqs/1.0#Person"/>
    <vCard:N rdf:resource="rdf:#author3VcardN"/>
  </rdf:Description>
  <rdf:Description rdf:about="rdf:#author1VcardN">
    <vCard:Given>Andreas</vCard:Given>
    <vCard:Family>Herz</vCard:Family>
    <vCard:Other>M</vCard:Other>
    <vCard:Other>V</vCard:Other>
  </rdf:Description>
  <rdf:Description rdf:about="rdf:#author5Vcard">
    <rdf:type rdf:resource="http://www.cellml.org/bqs/1.0#Person"/>
    <vCard:N rdf:resource="rdf:#author5VcardN"/>
  </rdf:Description>
  <rdf:Description rdf:about="rdf:#author4VcardN">
    <vCard:Given>Robert</vCard:Given>
    <vCard:Family>May</vCard:Family>
    <vCard:Other>M</vCard:Other>
  </rdf:Description>
  <rdf:Description rdf:about="rdf:#367786ae-72ed-493e-9e56-6fadf537d41d">
    <vCard:FN>Catherine Lloyd</vCard:FN>
  </rdf:Description>
  <rdf:Description rdf:about="rdf:#28cb412a-6670-4052-886b-60f2e2d1c7cb">
    <dcterms:W3CDTF>1996-07-09</dcterms:W3CDTF>
  </rdf:Description>
  <rdf:Description rdf:about="rdf:#04c80acf-524d-41d0-84d1-edf64d6b9101">
    <vCard:ORG rdf:resource="rdf:#2853969c-527c-497f-9747-449c8bd6302c"/>
    <vCard:EMAIL rdf:resource="rdf:#3b573009-55ba-43fa-a8a7-ad95ca0cdcf2"/>
    <vCard:N rdf:resource="rdf:#62c98dd5-2f20-4636-905a-a7939fe5341c"/>
  </rdf:Description>
  <rdf:Description rdf:about="rdf:#2853969c-527c-497f-9747-449c8bd6302c">
    <vCard:Orgname>The University of Auckland</vCard:Orgname>
    <vCard:Orgunit>The Bioengineering Institute</vCard:Orgunit>
  </rdf:Description>
</rdf:RDF>
</model>