De schematische bloedsomloop (met een kloppende aorta)
function infoFromJava_Slider(sliderNaam,waarde)
{
if (sliderNaam=="slider1") {document.formA1.s1vp.value=waarde;}
}
function ResetSliders()
{
document.N1.setPMax(150.0);
document.N1.setPMin(0.0);
document.N1.setPStart(100.0);
document.N1.setDigits(0);
...
p3=document.formA1.s3vp.value;
}
function Bereken()
{
document.formA1.v1.value =
document.formA1.sN1.value*document.formA1.s1v.value;
document.formA1.v2.value =
document.formA1.sN2.value*document.formA1.s2v.value;
document.formA1.v3.value =
document.formA1.sN3.value*document.formA1.s3v.value;
}
function runModel1()
{
t = 0.0;
getal = document.formA1.v5.value;
y1 = parseFloat(getal);
document.formA1.v6.value = getal;
y2 = 0.0;
for (i=1; i<100; i++)
{
document.grafiekAB.setGrafiek1YT1(t,y1);
document.grafiekAB.setGrafiek2YT1(t,y2);
t = t + 1;
document.grafiekAB.setGrafiek1YT2(t,y1);
document.grafiekAB.setGrafiek2YT2(t,y2);
}
}
...