diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /182/CH3 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '182/CH3')
34 files changed, 342 insertions, 0 deletions
diff --git a/182/CH3/EX3.1/example3_1.sce b/182/CH3/EX3.1/example3_1.sce new file mode 100755 index 000000000..48265f438 --- /dev/null +++ b/182/CH3/EX3.1/example3_1.sce @@ -0,0 +1,13 @@ +// To find the Torque on the coil
+// example3-1 in page 37
+clc;
+//Given data
+N=100;//Number of turns
+B=0.2;//Magnetic flux density of 0.2 tesla
+D=0.01; l=0.015; //diameter and length of the coil in meters
+I=.001;// current=1 mA
+//calculation
+T=B*l*I*N*D;// torque in N-m
+printf("Torque=%f N-m",T);
+//result
+//Torque=0.000003 N-m
\ No newline at end of file diff --git a/182/CH3/EX3.1/example3_1.txt b/182/CH3/EX3.1/example3_1.txt new file mode 100755 index 000000000..14db09d06 --- /dev/null +++ b/182/CH3/EX3.1/example3_1.txt @@ -0,0 +1 @@ +1.Torque=0.000003 N-m
\ No newline at end of file diff --git a/182/CH3/EX3.10/example3_10.sce b/182/CH3/EX3.10/example3_10.sce new file mode 100755 index 000000000..e9ee1d601 --- /dev/null +++ b/182/CH3/EX3.10/example3_10.sce @@ -0,0 +1,13 @@ +//To find the sensitivity
+//example 3-10 in page 54
+clc;
+//given data
+Im=157e-6;// peak current=157 micro ampere
+Vrms=100;// FSD rms voltage in volt
+//calculation
+Irms=0.707*Im;//FSD rms current
+R=Vrms/Irms;// total circuit resistance
+S=R/Vrms;//sensitivity
+printf("sensitivity=%d K-ohm/volt\n",S/1000);
+//result
+//sensitivity=9 k-ohm/Volt
\ No newline at end of file diff --git a/182/CH3/EX3.10/example3_10.txt b/182/CH3/EX3.10/example3_10.txt new file mode 100755 index 000000000..6b6585025 --- /dev/null +++ b/182/CH3/EX3.10/example3_10.txt @@ -0,0 +1 @@ +10.sensitivity=9 k-ohm/Volt
diff --git a/182/CH3/EX3.11/example3_11.sce b/182/CH3/EX3.11/example3_11.sce new file mode 100755 index 000000000..fa7693c65 --- /dev/null +++ b/182/CH3/EX3.11/example3_11.sce @@ -0,0 +1,21 @@ +//To find resistance Rs and Rsh in the given ciruit
+// example 3-10 in page 55
+clc;
+//data given
+Iav=50e-6;//average current through PMCC instrument=50 micro ampere
+Rm=1700;// coil resistance in ohm
+Vf=0.7;// diode forward drop in volts
+If=100e-6;// forward current = 100 micro-ampere
+Vrms=50;// ac rms voltage in volts
+// calculation
+Im=Iav/(0.5*0.637);//peak current in ampere
+Ifp=(100/20)*If;//at 20% of FSD, diode peak current(If) must be at least 100 micro ampere; therefore, at 100% of FSD,
+Ishp=Ifp-Im;// peak current through Rsh in ampere
+Vm=Im*Rm;// peak voltage in volts
+Rsh=Vm/Ishp;
+Rs=(1.414*Vrms-Vm-Vf)/Ifp;
+printf("Rsh=%d ohm\n",Rsh);
+printf("Rs=%.1f K-ohm\n",Rs/1000);
+//result
+//Rsh=778 ohm
+//Rs=139.5 K-ohm
\ No newline at end of file diff --git a/182/CH3/EX3.11/example3_11.txt b/182/CH3/EX3.11/example3_11.txt new file mode 100755 index 000000000..da11d4cb4 --- /dev/null +++ b/182/CH3/EX3.11/example3_11.txt @@ -0,0 +1,3 @@ +
+11.Rsh=778 ohm
+Rs=139.5 K-ohm
\ No newline at end of file diff --git a/182/CH3/EX3.12/example3_12.sce b/182/CH3/EX3.12/example3_12.sce new file mode 100755 index 000000000..08e051c59 --- /dev/null +++ b/182/CH3/EX3.12/example3_12.sce @@ -0,0 +1,22 @@ +//To find the the resistance Rl
+// example 3-12 in page 58
+clc;
+// Given data
+Iav=1e-3;// Average current through the PMCC = 1 mA
+Ip=250e-3;// primary current= 250 mA
+Rm=1700;// coil resistance in ohm
+Ns=500;// number of secondary turns
+Np=4;//number of primary turns
+Vf=0.7;//diode forward drop in volts
+Rs=20e+3;// Rs=20 k ohm
+//calculation
+Im=Iav/0.637;//peak current
+Em=(Im*(Rs+Rm))+(2*Vf);//secondary peak voltage
+Es=Em*0.707;//secondary rms voltage
+Irms=1.11*Iav;// RMS meter current
+Is=Ip*(Np/Ns);//transformer rms secondary current
+Il=Is-Irms;//current through Rl
+Rl=Es/Il;
+printf("Rl=%.1f K-ohm\n",Rl/1000);
+//result
+//Rl=28.2 K-ohm
\ No newline at end of file diff --git a/182/CH3/EX3.12/example3_12.txt b/182/CH3/EX3.12/example3_12.txt new file mode 100755 index 000000000..660937016 --- /dev/null +++ b/182/CH3/EX3.12/example3_12.txt @@ -0,0 +1,2 @@ +
+12.Rl=28.2 K-ohm
\ No newline at end of file diff --git a/182/CH3/EX3.13/example3_13.sce b/182/CH3/EX3.13/example3_13.sce new file mode 100755 index 000000000..09d75526d --- /dev/null +++ b/182/CH3/EX3.13/example3_13.sce @@ -0,0 +1,25 @@ + +//Given Data +clc; +Im=100e-6;// FSD=100 micro amps +e=1;// specified accuracy +//calculation +for n=1:2 + I=Im/n;//indicated current + Ie=(e/100)*Im;//error current + Imax=I+Ie;//actual measured maximum current + Imin=I-Ie;//actual measured minimum current + eI=(Ie/I)*100;//Percentage error in the measured currrent + printf("At %.1f FSD\n",1/n); +printf("Actual measured current=%d to %d micro-A\n",Imin*(1e+6),Imax*(1e+6)); +printf("error=(+/-)%d persent of measured current\n",eI); +printf("\n"); +end +//result +// At 1.000000 FSD +//Actual measured current=99 to 101 micro-A +//error=(+/-)1 persent of measured current + +//At 0.500000 FSD +//Actual measured current=49 to 51 micro-A +//error=(+/-)2 persent of measured current diff --git a/182/CH3/EX3.13/example3_13.txt b/182/CH3/EX3.13/example3_13.txt new file mode 100755 index 000000000..7b5f9b173 --- /dev/null +++ b/182/CH3/EX3.13/example3_13.txt @@ -0,0 +1,3 @@ +13.At 1.000000 FSD
+Actual measured current=99 to 101 micro-A
+error=(+/-)1 persent of measured current
\ No newline at end of file diff --git a/182/CH3/EX3.14/example3_14.sce b/182/CH3/EX3.14/example3_14.sce new file mode 100755 index 000000000..d7afec9b6 --- /dev/null +++ b/182/CH3/EX3.14/example3_14.sce @@ -0,0 +1,18 @@ + +// example 3-14 in page 61 +clc; +//Given Data +Eb=1.5;//battery rating in volts +Im=100e-6;// FSD=100 micro ampere +R=15e+3;// R1+Rx=15 K-ohm +//calculation +printf("meter indication when Rx=0 is %d micro-A (FSD)\n",(Eb/R+0)*10^6);// here Rx=0 +for n=0.25:0.25:0.75//FSD's in ampere at which resistance Rx should be calculated + Rx=(Eb/(n*Im))-R;// resistance in ohm + printf("Rx for %.2f FSD=%.0f K-ohm \n",n,Rx/1000); +end +//result +// meter indication when Rx=0 is 100 micro A (FSD) +//Rx for 0.25 FSD=45 K-ohm +//Rx for 0.5 FSD=15 K-ohm +//Rx for 0.75 FSD=5 K-ohm
\ No newline at end of file diff --git a/182/CH3/EX3.14/example3_14.txt b/182/CH3/EX3.14/example3_14.txt new file mode 100755 index 000000000..10d701427 --- /dev/null +++ b/182/CH3/EX3.14/example3_14.txt @@ -0,0 +1,4 @@ +14. meter indication when Rx=0 is 100 micro-A (FSD)
+Rx for 0.25 FSD=45 K-ohm
+Rx for 0.5 FSD=15 K-ohm
+Rx for 0.75 FSD=5 K-ohm
\ No newline at end of file diff --git a/182/CH3/EX3.15/example3_15.sce b/182/CH3/EX3.15/example3_15.sce new file mode 100755 index 000000000..115e377de --- /dev/null +++ b/182/CH3/EX3.15/example3_15.sce @@ -0,0 +1,34 @@ + +//example3-15 in page 63 +clc; +//Given data +R1=15e+3; // resistance R1=15 K-ohm +Rm=50;// coil resistance in ohm +R2=50;// resistance R2 in ohm +Im=50e-6;// FSD=50 micro-ampere +//calculations +printf("at Rx=0 & Eb=1.3 V,\n"); + Rx=0; Eb=1.3; + Ib=Eb/(Rx+R1); + I2=Ib-Im; + Vm=Im*Rm; + R21=Vm/I2;// the resistance R2 in ohm + printf("R2=%.2f ohm\n",R21); + for Eb=1.5:-0.2:1.3,// To find Rx + Vm=0.5*Im*Rm; + if Eb==1.3 + R2=R21; + end + I2=Vm/R2; + Ib=I2+Im*0.5; + Rx=(Eb/Ib)-R1; + printf("At 0.5 FSD with Eb=%.1f V,\n",Eb); + printf("Rx=%d K-ohm \n",Rx/1000); + end + //result +//at Rx=0 & Eb=1.3 V +//R2=68.181818 ohm +//At 0.5 FSD with Eb=1.5V, +//Rx=15 K-ohm +//At 0.5 FSD with Eb=1.3 V, +//Rx=15 K-ohm
\ No newline at end of file diff --git a/182/CH3/EX3.15/example3_15.txt b/182/CH3/EX3.15/example3_15.txt new file mode 100755 index 000000000..41f05696f --- /dev/null +++ b/182/CH3/EX3.15/example3_15.txt @@ -0,0 +1,6 @@ +15.at Rx=0 & Eb=1.3 V
+R2=68.18 ohm
+At 0.5 FSD with Eb=1.5 V,
+Rx=15 K-ohm
+At 0.5 FSD with Eb=1.3 V,
+Rx=15 K-ohm
\ No newline at end of file diff --git a/182/CH3/EX3.16/example3_16.sce b/182/CH3/EX3.16/example3_16.sce new file mode 100755 index 000000000..a47fb6085 --- /dev/null +++ b/182/CH3/EX3.16/example3_16.sce @@ -0,0 +1,13 @@ + +// example 3-16 in page65 +clc; +//Given data +//the equivalent circuit is derived as shown in the fig3-24 from the R X 1 range ohmmeter circuit +E=1.5;// battery rating in volts +//calculation +for Rx=0:24:24,//Rx in ohm + Ib=E/(Rx+14+((10*(9990+2875+3820))/(9990+2875+3820))); + + Im=Ib*(10/(10+9990+2875+3820));// meter current + printf("meter current when Rx=%d ohm is %.2f micro-A\n",Rx,Im*1e+6); +end diff --git a/182/CH3/EX3.16/example3_16.txt b/182/CH3/EX3.16/example3_16.txt new file mode 100755 index 000000000..7d628cd4f --- /dev/null +++ b/182/CH3/EX3.16/example3_16.txt @@ -0,0 +1,3 @@ +
+16.meter current when Rx=0 ohm is 37.436358 micro-A=full scale =0 ohm
+meter current when Rx=24 ohm is 18.718179 micro-A=half scale=24 ohm
\ No newline at end of file diff --git a/182/CH3/EX3.2/example3_2.sce b/182/CH3/EX3.2/example3_2.sce new file mode 100755 index 000000000..e3a827a38 --- /dev/null +++ b/182/CH3/EX3.2/example3_2.sce @@ -0,0 +1,14 @@ +//To find the voltage sensitivity and Megohm sensitivity
+// Example3-2 in page 39
+clc;
+//Given data
+Is=(1*10^-6)/(10^-3);// current sensitivity in A/m
+R=1000;// critical damping resistance of 1 kohm
+//calculation
+Vs=R*Is;//voltage sensitivity in mV/mm
+Rs=Vs/Is;// megohm sensitivity i M-ohm
+printf("Voltage sensitivity=%d mV/mm\n",Vs);
+printf("megohm sensitivity=%d M-ohm",Rs/1000);
+//result
+//Voltage sensitivity=1 mV/mm
+//Megohm sensitivity=1 Kohm
\ No newline at end of file diff --git a/182/CH3/EX3.2/example3_2.txt b/182/CH3/EX3.2/example3_2.txt new file mode 100755 index 000000000..c78b88ab3 --- /dev/null +++ b/182/CH3/EX3.2/example3_2.txt @@ -0,0 +1,2 @@ +2.Voltage sensitivity=1 mV/mm
+megohm sensitivity=1 M-ohm
diff --git a/182/CH3/EX3.3/example3_3.sce b/182/CH3/EX3.3/example3_3.sce new file mode 100755 index 000000000..3a84519b6 --- /dev/null +++ b/182/CH3/EX3.3/example3_3.sce @@ -0,0 +1,20 @@ + +//example 3-3 in page 41 +clc; +//Given Data +A=['a' 'b' 'c']; +m=0; +Rm=99;//coil resistance in ohm +IM=0.1e-3;//FSD(IM)=0.1 mA +Rs=1;//shunt resistance in ohm +//calculation +n=2;//initialisation +while n>0.25, + n=n/2; + Im=IM*n; + Vm=Im*Rm;// Meter voltage in volts + Is=Vm/Rs;//current throught the shunt resistance in ampere + I=Im+Is;//toatal current through the ammeter I=Im+Is in ampere + m=m+1; + printf("(%c) current through the ammeter at %.2f FSD=%.1f mA\n",A(m),n,I*1000); +end diff --git a/182/CH3/EX3.3/example3_3.txt b/182/CH3/EX3.3/example3_3.txt new file mode 100755 index 000000000..6bc6cba20 --- /dev/null +++ b/182/CH3/EX3.3/example3_3.txt @@ -0,0 +1,4 @@ +
+3.current through the ammeter at 1 FSD=0.01 A
+current through the ammeter at 0.5 FSD=0.005 A
+current through the ammeter at 0.25 FSD=0.0025 A
\ No newline at end of file diff --git a/182/CH3/EX3.4/example3_4.sce b/182/CH3/EX3.4/example3_4.sce new file mode 100755 index 000000000..b799f4e09 --- /dev/null +++ b/182/CH3/EX3.4/example3_4.sce @@ -0,0 +1,18 @@ +// To find the Shut resistance of the ammeter +// example 3-4 in paage 43 +clc; +//Given data +A=['b' 'a']; +Im=100*10^-6;// FSD(Im) in ampere +Rm=1000;// Coil resistance is 1 K-ohm +// calculation +I=10;// FSD initialisation +m=0; +while I>0.1, + I=I/10; + Vm=Im*Rm;//voltage across the meter in volts + Is=I-Im;//current through shunt resistance in ampere + Rs=Vm/Is;//shunt resistance in ohm + m=m+1; + printf("(%c) shunt resistance value for %.1f A FSD is %f ohm\n ",A(m),I,Rs); +end diff --git a/182/CH3/EX3.4/example3_4.txt b/182/CH3/EX3.4/example3_4.txt new file mode 100755 index 000000000..6d9ce1802 --- /dev/null +++ b/182/CH3/EX3.4/example3_4.txt @@ -0,0 +1,3 @@ +
+4.(b) shunt resistance for 1 A FSD is 0.100010 ohm
+(a) shunt resistance for 100 mA FSD is 1.001001 ohm
diff --git a/182/CH3/EX3.5/example3_5.sce b/182/CH3/EX3.5/example3_5.sce new file mode 100755 index 000000000..721bda66c --- /dev/null +++ b/182/CH3/EX3.5/example3_5.sce @@ -0,0 +1 @@ +//Theory problem
\ No newline at end of file diff --git a/182/CH3/EX3.5/example3_5.txt b/182/CH3/EX3.5/example3_5.txt new file mode 100755 index 000000000..076781112 --- /dev/null +++ b/182/CH3/EX3.5/example3_5.txt @@ -0,0 +1,3 @@ + Ammeter range when switch is at B is 10.05 mA
+Ammeter range when switch is at C is 100.50 mA
+Ammeter range when switch is at D is 1005.00 mA
\ No newline at end of file diff --git a/182/CH3/EX3.6/example3_6.sce b/182/CH3/EX3.6/example3_6.sce new file mode 100755 index 000000000..49b1c5dbc --- /dev/null +++ b/182/CH3/EX3.6/example3_6.sce @@ -0,0 +1,2 @@ + +//Theory
\ No newline at end of file diff --git a/182/CH3/EX3.6/example3_6.txt b/182/CH3/EX3.6/example3_6.txt new file mode 100755 index 000000000..5303845f9 --- /dev/null +++ b/182/CH3/EX3.6/example3_6.txt @@ -0,0 +1,4 @@ +
+6. the applied voltage when instrument indicates 0.800000 FSD=40 V
+the applied voltage when instrument indicates 0.500000 FSD=25 V
+the applied voltage when instrument indicates 0.200000 FSD=10 V
diff --git a/182/CH3/EX3.7/example3_7.sce b/182/CH3/EX3.7/example3_7.sce new file mode 100755 index 000000000..b014f03df --- /dev/null +++ b/182/CH3/EX3.7/example3_7.sce @@ -0,0 +1,28 @@ +// To find the required multiplier resistance for the two given circuits
+//Example3-7 in page 49
+clc;
+//Given data
+V=[10 50 100];// voltage ranges in volt
+Im=50e-6;// FSD=50 micro-A
+Rm=1700;// coil resistance in ohm
+//calculation
+printf("for circuit as in figure 3-16(a)\n");
+for n=1:3
+ R=(V(n)/Im)-Rm;
+ printf("R%d=%.4f M ohm\n",n,R/10^6);
+end
+printf("for circuit as in figure 3-16(b)\n");
+R=zeros(1,3);
+for n=1:3
+ R(n)=(V(n)/Im)-Rm-R(1)-R(2);
+ printf("R%d=%.4f M ohm \n",n,R(n)/10^6);
+end
+//result
+// for circuit as in figure 3-16(a)
+//R1=198300 ohm
+//R2=998300 ohm
+//R3=1998300 ohm
+//for circuit as in figure 3-16(b)
+//R1=198300 ohm
+//R2=800000 ohm
+//R3=1000000 ohm
\ No newline at end of file diff --git a/182/CH3/EX3.7/example3_7.txt b/182/CH3/EX3.7/example3_7.txt new file mode 100755 index 000000000..efa0ebcac --- /dev/null +++ b/182/CH3/EX3.7/example3_7.txt @@ -0,0 +1,9 @@ +
+7. for circuit as in figure 3-16(a)
+R1=198300 ohm
+R2=998300 ohm
+R3=1998300 ohm
+for circuit as in figure 3-16(b)
+R1=198300 ohm
+R2=800000 ohm
+R3=1000000 ohm
diff --git a/182/CH3/EX3.7/example3_7.xcos b/182/CH3/EX3.7/example3_7.xcos new file mode 100755 index 000000000..ecf8fe693 --- /dev/null +++ b/182/CH3/EX3.7/example3_7.xcos @@ -0,0 +1 @@ +<?xml version="1.0" encoding="UTF-8"?><XcosDiagram background="-1" title="example3-7"><!--Xcos - 1.0 - scilab-5.3.2 - 20110511 1831--><Array as="context" scilabClass="String[]"><add value=""/><add value="0"/></Array><mxGraphModel as="model"><root><mxCell id="-c3ae985:131513f8ae1:-7f2d"/><mxCell id="-c3ae985:131513f8ae1:-7f2e" parent="-c3ae985:131513f8ae1:-7f2d"/><BasicBlock dependsOnU="1" id="-c3ae985:131513f8ae1:-7f0e" interfaceFunctionName="Resistor" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionName="resistor" simulationFunctionType="DEFAULT" style="Resistor;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.01"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Resistor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="R"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="40.0" y="50.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7f0c" ordering="1" parent="-c3ae985:131513f8ae1:-7f0e" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7f0d" ordering="1" parent="-c3ae985:131513f8ae1:-7f0e" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><BasicBlock dependsOnU="1" id="-c3ae985:131513f8ae1:-7f0b" interfaceFunctionName="Resistor" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionName="resistor" simulationFunctionType="DEFAULT" style="Resistor;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.01"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Resistor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="R"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="250.0" y="50.0"/></BasicBlock><ImplicitInputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7f09" ordering="1" parent="-c3ae985:131513f8ae1:-7f0b" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7f0a" ordering="1" parent="-c3ae985:131513f8ae1:-7f0b" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><BasicBlock dependsOnU="1" id="-c3ae985:131513f8ae1:-7f08" interfaceFunctionName="Resistor" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionName="resistor" simulationFunctionType="DEFAULT" style="Resistor;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.01"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Resistor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="R"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="350.0" y="50.0"/></BasicBlock><ImplicitInputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7f06" ordering="1" parent="-c3ae985:131513f8ae1:-7f08" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7f07" ordering="1" parent="-c3ae985:131513f8ae1:-7f08" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><BasicBlock dependsOnU="1" id="-c3ae985:131513f8ae1:-7f05" interfaceFunctionName="Resistor" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionName="resistor" simulationFunctionType="DEFAULT" style="Resistor;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.01"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Resistor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="R"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="450.0" y="50.0"/></BasicBlock><ImplicitInputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7f03" ordering="1" parent="-c3ae985:131513f8ae1:-7f05" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7f04" ordering="1" parent="-c3ae985:131513f8ae1:-7f05" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><VoltageSensorBlock angle="270" dependsOnU="1" id="-c3ae985:131513f8ae1:-7efc" interfaceFunctionName="VoltageSensor" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionName="VoltageSensor" simulationFunctionType="DEFAULT" style="VoltageSensor;flip=false;mirror=false;rotation=270"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="VoltageSensor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="n"/><data column="0" line="1" value="v"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="140.0" y="50.0"/></VoltageSensorBlock><ExplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7efa" ordering="2" parent="-c3ae985:131513f8ae1:-7efc" style="ExplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ExplicitOutputPort><ImplicitInputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7ef9" ordering="1" parent="-c3ae985:131513f8ae1:-7efc" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><ImplicitOutputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7efb" ordering="1" parent="-c3ae985:131513f8ae1:-7efc" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><Orientation as="orientation" value="SOUTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitLink id="-c3ae985:131513f8ae1:-7ef7"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="84.0" y="70.0"/><mxPoint as="targetPoint" x="140.0" y="70.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="140.0" y="70.0"/></Array></mxGeometry><mxCell as="parent" id="-c3ae985:131513f8ae1:-7f2e" parent="-c3ae985:131513f8ae1:-7f2d"/><ImplicitOutputPort as="source" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7f0d" ordering="1" parent="-c3ae985:131513f8ae1:-7f0e" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7ef9" ordering="1" parent="-c3ae985:131513f8ae1:-7efc" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort></ImplicitLink><ImplicitLink id="-c3ae985:131513f8ae1:-7ee3"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="294.0" y="70.0"/><mxPoint as="targetPoint" x="350.0" y="70.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="320.0" y="70.0"/><mxPoint x="320.0" y="70.0"/><mxPoint x="320.0" y="130.0"/><mxPoint x="380.0" y="130.0"/><mxPoint x="320.0" y="130.0"/><mxPoint x="320.0" y="70.0"/></Array></mxGeometry><mxCell as="parent" id="-c3ae985:131513f8ae1:-7f2e" parent="-c3ae985:131513f8ae1:-7f2d"/><ImplicitOutputPort as="source" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7f0a" ordering="1" parent="-c3ae985:131513f8ae1:-7f0b" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7f06" ordering="1" parent="-c3ae985:131513f8ae1:-7f08" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort></ImplicitLink><ImplicitLink id="-c3ae985:131513f8ae1:-7ee2"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="394.0" y="70.0"/><mxPoint as="targetPoint" x="440.0" y="70.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="410.0" y="70.0"/><mxPoint x="420.0" y="70.0"/><mxPoint x="420.0" y="110.0"/><mxPoint x="420.0" y="70.0"/><mxPoint x="450.0" y="70.0"/></Array></mxGeometry><mxCell as="parent" id="-c3ae985:131513f8ae1:-7f2e" parent="-c3ae985:131513f8ae1:-7f2d"/><ImplicitOutputPort as="source" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7f07" ordering="1" parent="-c3ae985:131513f8ae1:-7f08" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7f03" ordering="1" parent="-c3ae985:131513f8ae1:-7f05" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort></ImplicitLink><TextBlock id="-c3ae985:131513f8ae1:-7f2c" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" style="TEXT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="40.0" width="40.0" x="70.0" y="50.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7fc3" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> |<br>|<br>|<br>|<br>|<br>|<br>|<br>|<br>|<br>|<br>| </body> </html> "><mxGeometry as="geometry" height="160.0" width="40.0" x="10.0" y="70.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7fbd" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> 3-16(b) </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="170.0" y="240.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7fbc" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> -----------O </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="40.0" y="210.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7fb9" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> O---------------- </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="360.0" y="210.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7fb6" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> |<br>|<br>|<br>|<br> </body> </html> "><mxGeometry as="geometry" height="160.0" width="40.0" x="480.0" y="20.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7faf" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> <p style="margin-top: 0"> </p> </body> </html> "><mxGeometry as="geometry" height="160.0" width="40.0" x="10.0" y="80.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7fa4" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> <br> <br> <br> |<br>|<br>|<br>|<br>| </body> </html> "><mxGeometry as="geometry" height="240.0" width="40.0" x="400.0" y="80.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7f9f" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> O </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="400.0" y="140.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7f9a" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> O </body> </html> "><mxGeometry as="geometry" height="20.0" width="30.0" x="370.0" y="120.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7f98" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> O </body> </html> "><mxGeometry as="geometry" height="30.0" width="40.0" x="400.0" y="100.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7f92" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> ----------- </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="460.0" y="110.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7f8c" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> O </body> </html> "><mxGeometry as="geometry" height="40.0" width="30.0" x="440.0" y="110.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7f8a" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> ^ . </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="400.0" y="110.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7f85" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> |<br>|<br> </body> </html> "><mxGeometry as="geometry" height="160.0" width="40.0" x="400.0" y="60.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7f80" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> ..&lt;---------------V------------------------------------&gt; </body> </html> "><mxGeometry as="geometry" height="40.0" width="240.0" x="100.0" y="210.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7f79" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> Rm </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="40.0" y="10.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7f77" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> R1 </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="250.0" y="10.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7f76" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> R2 </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="350.0" y="10.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7f75" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> R3 </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="450.0" y="10.0"/></TextBlock><BasicBlock dependsOnU="1" id="785a4b74:13161428a19:-7f65" interfaceFunctionName="Resistor" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionName="resistor" simulationFunctionType="DEFAULT" style="Resistor"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.01"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Resistor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="R"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="80.0" y="350.0"/></BasicBlock><ImplicitOutputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f64" ordering="1" parent="785a4b74:13161428a19:-7f65" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f63" ordering="1" parent="785a4b74:13161428a19:-7f65" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="785a4b74:13161428a19:-7f62" interfaceFunctionName="Resistor" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionName="resistor" simulationFunctionType="DEFAULT" style="Resistor"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.01"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Resistor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="R"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="330.0" y="270.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f61" ordering="1" parent="785a4b74:13161428a19:-7f62" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f60" ordering="1" parent="785a4b74:13161428a19:-7f62" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="785a4b74:13161428a19:-7f5f" interfaceFunctionName="Resistor" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionName="resistor" simulationFunctionType="DEFAULT" style="Resistor"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.01"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Resistor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="R"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="330.0" y="350.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f5e" ordering="1" parent="785a4b74:13161428a19:-7f5f" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f5d" ordering="1" parent="785a4b74:13161428a19:-7f5f" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><VoltageSensorBlock angle="270" dependsOnU="1" id="785a4b74:13161428a19:-7f50" interfaceFunctionName="VoltageSensor" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionName="VoltageSensor" simulationFunctionType="DEFAULT" style="VoltageSensor;rotation=270"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="VoltageSensor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="n"/><data column="0" line="1" value="v"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="180.0" y="350.0"/></VoltageSensorBlock><ImplicitOutputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f4f" ordering="1" parent="785a4b74:13161428a19:-7f50" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0"><Orientation as="orientation" value="SOUTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ExplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f4e" ordering="2" parent="785a4b74:13161428a19:-7f50" style="ExplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ExplicitOutputPort><ImplicitInputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f4d" ordering="1" parent="785a4b74:13161428a19:-7f50" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="785a4b74:13161428a19:-7f5c" interfaceFunctionName="Resistor" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionName="resistor" simulationFunctionType="DEFAULT" style="Resistor"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.01"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Resistor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="R"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="330.0" y="440.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f5b" ordering="1" parent="785a4b74:13161428a19:-7f5c" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f5a" ordering="1" parent="785a4b74:13161428a19:-7f5c" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitLink id="785a4b74:13161428a19:-7f2a"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="184.0" y="70.0"/><mxPoint as="targetPoint" x="240.0" y="70.0"/></mxGeometry><mxCell as="parent" id="-c3ae985:131513f8ae1:-7f2e" parent="-c3ae985:131513f8ae1:-7f2d"/><ImplicitOutputPort as="source" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7efb" ordering="1" parent="-c3ae985:131513f8ae1:-7efc" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><Orientation as="orientation" value="SOUTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7f09" ordering="1" parent="-c3ae985:131513f8ae1:-7f0b" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort></ImplicitLink><ImplicitLink id="785a4b74:13161428a19:-7f26"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="124.0" y="370.0"/><mxPoint as="targetPoint" x="200.0" y="400.0"/><Array as="points" scilabClass=""><mxPoint x="160.0" y="370.0"/><mxPoint x="180.0" y="370.0"/></Array></mxGeometry><mxCell as="parent" id="-c3ae985:131513f8ae1:-7f2e" parent="-c3ae985:131513f8ae1:-7f2d"/><ImplicitOutputPort as="source" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f64" ordering="1" parent="785a4b74:13161428a19:-7f65" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f4d" ordering="1" parent="785a4b74:13161428a19:-7f50" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort></ImplicitLink><SplitBlock id="785a4b74:13161428a19:-7f1f" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT"><mxGeometry as="geometry" height="7.0" width="7.0" x="307.0" y="367.0"/></SplitBlock><ImplicitInputPort connectable="0" dataType="UNKNOW_TYPE" id="785a4b74:13161428a19:-7f1e" ordering="1" parent="785a4b74:13161428a19:-7f1f" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort connectable="0" dataType="UNKNOW_TYPE" id="785a4b74:13161428a19:-7f1d" ordering="1" parent="785a4b74:13161428a19:-7f1f" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort connectable="0" dataType="UNKNOW_TYPE" id="785a4b74:13161428a19:-7f1c" ordering="2" parent="785a4b74:13161428a19:-7f1f" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="785a4b74:13161428a19:-7f1b"><mxGeometry as="geometry"><Array as="points" scilabClass=""/></mxGeometry><mxCell as="parent" id="-c3ae985:131513f8ae1:-7f2e" parent="-c3ae985:131513f8ae1:-7f2d"/><ImplicitOutputPort as="source" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f4f" ordering="1" parent="785a4b74:13161428a19:-7f50" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0"><Orientation as="orientation" value="SOUTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataType="UNKNOW_TYPE" id="785a4b74:13161428a19:-7f1e" ordering="1" parent="785a4b74:13161428a19:-7f1f" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort></ImplicitLink><ImplicitLink id="785a4b74:13161428a19:-7f20"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="326.0" y="290.0"/><mxPoint as="targetPoint" x="310.0" y="370.0"/><Array as="points" scilabClass=""><mxPoint x="320.0" y="360.0"/></Array></mxGeometry><mxCell as="parent" id="-c3ae985:131513f8ae1:-7f2e" parent="-c3ae985:131513f8ae1:-7f2d"/><ImplicitOutputPort as="source" connectable="0" dataType="UNKNOW_TYPE" id="785a4b74:13161428a19:-7f1c" ordering="2" parent="785a4b74:13161428a19:-7f1f" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f60" ordering="1" parent="785a4b74:13161428a19:-7f62" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort></ImplicitLink><SplitBlock id="785a4b74:13161428a19:-7f18" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT"><mxGeometry as="geometry" height="7.0" width="7.0" x="307.0" y="367.0"/></SplitBlock><ImplicitInputPort connectable="0" dataType="UNKNOW_TYPE" id="785a4b74:13161428a19:-7f17" ordering="1" parent="785a4b74:13161428a19:-7f18" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort connectable="0" dataType="UNKNOW_TYPE" id="785a4b74:13161428a19:-7f16" ordering="1" parent="785a4b74:13161428a19:-7f18" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort connectable="0" dataType="UNKNOW_TYPE" id="785a4b74:13161428a19:-7f15" ordering="2" parent="785a4b74:13161428a19:-7f18" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="785a4b74:13161428a19:-7f14"><mxGeometry as="geometry"><Array as="points" scilabClass=""/></mxGeometry><mxCell as="parent" id="-c3ae985:131513f8ae1:-7f2e" parent="-c3ae985:131513f8ae1:-7f2d"/><ImplicitOutputPort as="source" connectable="0" dataType="UNKNOW_TYPE" id="785a4b74:13161428a19:-7f1d" ordering="1" parent="785a4b74:13161428a19:-7f1f" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataType="UNKNOW_TYPE" id="785a4b74:13161428a19:-7f17" ordering="1" parent="785a4b74:13161428a19:-7f18" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort></ImplicitLink><ImplicitLink id="785a4b74:13161428a19:-7f13"><mxGeometry as="geometry"><Array as="points" scilabClass=""/></mxGeometry><mxCell as="parent" id="-c3ae985:131513f8ae1:-7f2e" parent="-c3ae985:131513f8ae1:-7f2d"/><ImplicitOutputPort as="source" connectable="0" dataType="UNKNOW_TYPE" id="785a4b74:13161428a19:-7f16" ordering="1" parent="785a4b74:13161428a19:-7f18" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f5d" ordering="1" parent="785a4b74:13161428a19:-7f5f" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort></ImplicitLink><ImplicitLink id="785a4b74:13161428a19:-7f19"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="326.0" y="460.0"/><mxPoint as="targetPoint" x="310.0" y="370.0"/></mxGeometry><mxCell as="parent" id="-c3ae985:131513f8ae1:-7f2e" parent="-c3ae985:131513f8ae1:-7f2d"/><ImplicitOutputPort as="source" connectable="0" dataType="UNKNOW_TYPE" id="785a4b74:13161428a19:-7f15" ordering="2" parent="785a4b74:13161428a19:-7f18" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f5a" ordering="1" parent="785a4b74:13161428a19:-7f5c" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort></ImplicitLink><TextBlock id="785a4b74:13161428a19:-7f0e" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> -----------O </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="380.0" y="270.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7f0c" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> -----------O </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="380.0" y="350.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7f0a" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> -----------O </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="380.0" y="440.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7f07" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> <p style="margin-top: 0"> | </p> <p style="margin-top: 0"> | </p> <p style="margin-top: 0"> | </p> <p style="margin-top: 0"> | </p> <p style="margin-top: 0"> | </p> <p style="margin-top: 0"> | </p> <p style="margin-top: 0"> | </p> <p style="margin-top: 0"> | </p> <p style="margin-top: 0"> | </p> <p style="margin-top: 0"> | </p> </body> </html> "><mxGeometry as="geometry" height="180.0" width="40.0" x="50.0" y="490.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7eff" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> |<br>|<br>|<br>|<br>|<br>|<br> </body> </html> "><mxGeometry as="geometry" height="90.0" width="40.0" x="490.0" y="370.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7ef8" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> -----------O </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="80.0" y="500.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7ef5" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> ..&lt;---------------V------------------------------------&gt; </body> </html> "><mxGeometry as="geometry" height="40.0" width="240.0" x="120.0" y="500.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7ef2" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> O------------------- </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="380.0" y="500.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7eea" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> ---------------- </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="450.0" y="500.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7ee5" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> |<br>|<br>|<br>|<br>| </body> </html> "><mxGeometry as="geometry" height="90.0" width="40.0" x="490.0" y="440.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7edf" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> -----------O </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="470.0" y="350.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7edc" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> &lt;-------- </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="430.0" y="350.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7ed9" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> Rm </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="80.0" y="320.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7ed5" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> R1 </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="320.0" y="240.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7ed2" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> R2 </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="330.0" y="320.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7ece" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> R3 </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="330.0" y="410.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7eca" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> 3-16(a) </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="190.0" y="540.0"/></TextBlock></root></mxGraphModel><mxCell as="defaultParent" id="-c3ae985:131513f8ae1:-7f2e" parent="-c3ae985:131513f8ae1:-7f2d"/></XcosDiagram>
\ No newline at end of file diff --git a/182/CH3/EX3.8/example3_7.sce b/182/CH3/EX3.8/example3_7.sce new file mode 100755 index 000000000..bb896d543 --- /dev/null +++ b/182/CH3/EX3.8/example3_7.sce @@ -0,0 +1,19 @@ +// To find the required multiplier resistance for the two given circuits +//Example3-7 in page 49 +clc; +//Given data +V=[10 50 100];// voltage ranges in volt +Im=50e-6;// FSD=50 micro-A +Rm=1700;// coil resistance in ohm +//calculation +printf("for circuit as in figure 3-16(a)\n"); +for n=1:3 + R=(V(n)/Im)-Rm; + printf("R%d=%.4f M ohm\n",n,R/10^6); +end +printf("for circuit as in figure 3-16(b)\n"); +R=zeros(1,3); +for n=1:3 + R(n)=(V(n)/Im)-Rm-R(1)-R(2); + printf("R%d=%.4f M ohm \n",n,R(n)/10^6); +end diff --git a/182/CH3/EX3.8/example3_7.txt b/182/CH3/EX3.8/example3_7.txt new file mode 100755 index 000000000..efa0ebcac --- /dev/null +++ b/182/CH3/EX3.8/example3_7.txt @@ -0,0 +1,9 @@ +
+7. for circuit as in figure 3-16(a)
+R1=198300 ohm
+R2=998300 ohm
+R3=1998300 ohm
+for circuit as in figure 3-16(b)
+R1=198300 ohm
+R2=800000 ohm
+R3=1000000 ohm
diff --git a/182/CH3/EX3.8/example3_7.xcos b/182/CH3/EX3.8/example3_7.xcos new file mode 100755 index 000000000..ecf8fe693 --- /dev/null +++ b/182/CH3/EX3.8/example3_7.xcos @@ -0,0 +1 @@ +<?xml version="1.0" encoding="UTF-8"?><XcosDiagram background="-1" title="example3-7"><!--Xcos - 1.0 - scilab-5.3.2 - 20110511 1831--><Array as="context" scilabClass="String[]"><add value=""/><add value="0"/></Array><mxGraphModel as="model"><root><mxCell id="-c3ae985:131513f8ae1:-7f2d"/><mxCell id="-c3ae985:131513f8ae1:-7f2e" parent="-c3ae985:131513f8ae1:-7f2d"/><BasicBlock dependsOnU="1" id="-c3ae985:131513f8ae1:-7f0e" interfaceFunctionName="Resistor" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionName="resistor" simulationFunctionType="DEFAULT" style="Resistor;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.01"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Resistor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="R"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="40.0" y="50.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7f0c" ordering="1" parent="-c3ae985:131513f8ae1:-7f0e" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7f0d" ordering="1" parent="-c3ae985:131513f8ae1:-7f0e" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><BasicBlock dependsOnU="1" id="-c3ae985:131513f8ae1:-7f0b" interfaceFunctionName="Resistor" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionName="resistor" simulationFunctionType="DEFAULT" style="Resistor;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.01"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Resistor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="R"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="250.0" y="50.0"/></BasicBlock><ImplicitInputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7f09" ordering="1" parent="-c3ae985:131513f8ae1:-7f0b" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7f0a" ordering="1" parent="-c3ae985:131513f8ae1:-7f0b" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><BasicBlock dependsOnU="1" id="-c3ae985:131513f8ae1:-7f08" interfaceFunctionName="Resistor" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionName="resistor" simulationFunctionType="DEFAULT" style="Resistor;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.01"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Resistor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="R"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="350.0" y="50.0"/></BasicBlock><ImplicitInputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7f06" ordering="1" parent="-c3ae985:131513f8ae1:-7f08" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7f07" ordering="1" parent="-c3ae985:131513f8ae1:-7f08" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><BasicBlock dependsOnU="1" id="-c3ae985:131513f8ae1:-7f05" interfaceFunctionName="Resistor" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionName="resistor" simulationFunctionType="DEFAULT" style="Resistor;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.01"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Resistor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="R"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="450.0" y="50.0"/></BasicBlock><ImplicitInputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7f03" ordering="1" parent="-c3ae985:131513f8ae1:-7f05" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7f04" ordering="1" parent="-c3ae985:131513f8ae1:-7f05" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><VoltageSensorBlock angle="270" dependsOnU="1" id="-c3ae985:131513f8ae1:-7efc" interfaceFunctionName="VoltageSensor" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionName="VoltageSensor" simulationFunctionType="DEFAULT" style="VoltageSensor;flip=false;mirror=false;rotation=270"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="VoltageSensor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="n"/><data column="0" line="1" value="v"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="140.0" y="50.0"/></VoltageSensorBlock><ExplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7efa" ordering="2" parent="-c3ae985:131513f8ae1:-7efc" style="ExplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ExplicitOutputPort><ImplicitInputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7ef9" ordering="1" parent="-c3ae985:131513f8ae1:-7efc" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><ImplicitOutputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7efb" ordering="1" parent="-c3ae985:131513f8ae1:-7efc" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><Orientation as="orientation" value="SOUTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitLink id="-c3ae985:131513f8ae1:-7ef7"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="84.0" y="70.0"/><mxPoint as="targetPoint" x="140.0" y="70.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="140.0" y="70.0"/></Array></mxGeometry><mxCell as="parent" id="-c3ae985:131513f8ae1:-7f2e" parent="-c3ae985:131513f8ae1:-7f2d"/><ImplicitOutputPort as="source" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7f0d" ordering="1" parent="-c3ae985:131513f8ae1:-7f0e" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7ef9" ordering="1" parent="-c3ae985:131513f8ae1:-7efc" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort></ImplicitLink><ImplicitLink id="-c3ae985:131513f8ae1:-7ee3"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="294.0" y="70.0"/><mxPoint as="targetPoint" x="350.0" y="70.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="320.0" y="70.0"/><mxPoint x="320.0" y="70.0"/><mxPoint x="320.0" y="130.0"/><mxPoint x="380.0" y="130.0"/><mxPoint x="320.0" y="130.0"/><mxPoint x="320.0" y="70.0"/></Array></mxGeometry><mxCell as="parent" id="-c3ae985:131513f8ae1:-7f2e" parent="-c3ae985:131513f8ae1:-7f2d"/><ImplicitOutputPort as="source" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7f0a" ordering="1" parent="-c3ae985:131513f8ae1:-7f0b" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7f06" ordering="1" parent="-c3ae985:131513f8ae1:-7f08" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort></ImplicitLink><ImplicitLink id="-c3ae985:131513f8ae1:-7ee2"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="394.0" y="70.0"/><mxPoint as="targetPoint" x="440.0" y="70.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="410.0" y="70.0"/><mxPoint x="420.0" y="70.0"/><mxPoint x="420.0" y="110.0"/><mxPoint x="420.0" y="70.0"/><mxPoint x="450.0" y="70.0"/></Array></mxGeometry><mxCell as="parent" id="-c3ae985:131513f8ae1:-7f2e" parent="-c3ae985:131513f8ae1:-7f2d"/><ImplicitOutputPort as="source" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7f07" ordering="1" parent="-c3ae985:131513f8ae1:-7f08" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7f03" ordering="1" parent="-c3ae985:131513f8ae1:-7f05" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort></ImplicitLink><TextBlock id="-c3ae985:131513f8ae1:-7f2c" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" style="TEXT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="40.0" width="40.0" x="70.0" y="50.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7fc3" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> |<br>|<br>|<br>|<br>|<br>|<br>|<br>|<br>|<br>|<br>| </body> </html> "><mxGeometry as="geometry" height="160.0" width="40.0" x="10.0" y="70.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7fbd" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> 3-16(b) </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="170.0" y="240.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7fbc" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> -----------O </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="40.0" y="210.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7fb9" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> O---------------- </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="360.0" y="210.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7fb6" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> |<br>|<br>|<br>|<br> </body> </html> "><mxGeometry as="geometry" height="160.0" width="40.0" x="480.0" y="20.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7faf" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> <p style="margin-top: 0"> </p> </body> </html> "><mxGeometry as="geometry" height="160.0" width="40.0" x="10.0" y="80.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7fa4" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> <br> <br> <br> |<br>|<br>|<br>|<br>| </body> </html> "><mxGeometry as="geometry" height="240.0" width="40.0" x="400.0" y="80.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7f9f" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> O </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="400.0" y="140.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7f9a" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> O </body> </html> "><mxGeometry as="geometry" height="20.0" width="30.0" x="370.0" y="120.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7f98" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> O </body> </html> "><mxGeometry as="geometry" height="30.0" width="40.0" x="400.0" y="100.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7f92" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> ----------- </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="460.0" y="110.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7f8c" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> O </body> </html> "><mxGeometry as="geometry" height="40.0" width="30.0" x="440.0" y="110.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7f8a" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> ^ . </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="400.0" y="110.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7f85" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> |<br>|<br> </body> </html> "><mxGeometry as="geometry" height="160.0" width="40.0" x="400.0" y="60.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7f80" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> ..&lt;---------------V------------------------------------&gt; </body> </html> "><mxGeometry as="geometry" height="40.0" width="240.0" x="100.0" y="210.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7f79" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> Rm </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="40.0" y="10.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7f77" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> R1 </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="250.0" y="10.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7f76" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> R2 </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="350.0" y="10.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7f75" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> R3 </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="450.0" y="10.0"/></TextBlock><BasicBlock dependsOnU="1" id="785a4b74:13161428a19:-7f65" interfaceFunctionName="Resistor" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionName="resistor" simulationFunctionType="DEFAULT" style="Resistor"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.01"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Resistor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="R"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="80.0" y="350.0"/></BasicBlock><ImplicitOutputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f64" ordering="1" parent="785a4b74:13161428a19:-7f65" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f63" ordering="1" parent="785a4b74:13161428a19:-7f65" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="785a4b74:13161428a19:-7f62" interfaceFunctionName="Resistor" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionName="resistor" simulationFunctionType="DEFAULT" style="Resistor"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.01"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Resistor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="R"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="330.0" y="270.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f61" ordering="1" parent="785a4b74:13161428a19:-7f62" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f60" ordering="1" parent="785a4b74:13161428a19:-7f62" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="785a4b74:13161428a19:-7f5f" interfaceFunctionName="Resistor" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionName="resistor" simulationFunctionType="DEFAULT" style="Resistor"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.01"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Resistor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="R"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="330.0" y="350.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f5e" ordering="1" parent="785a4b74:13161428a19:-7f5f" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f5d" ordering="1" parent="785a4b74:13161428a19:-7f5f" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><VoltageSensorBlock angle="270" dependsOnU="1" id="785a4b74:13161428a19:-7f50" interfaceFunctionName="VoltageSensor" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionName="VoltageSensor" simulationFunctionType="DEFAULT" style="VoltageSensor;rotation=270"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="VoltageSensor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="n"/><data column="0" line="1" value="v"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="180.0" y="350.0"/></VoltageSensorBlock><ImplicitOutputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f4f" ordering="1" parent="785a4b74:13161428a19:-7f50" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0"><Orientation as="orientation" value="SOUTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ExplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f4e" ordering="2" parent="785a4b74:13161428a19:-7f50" style="ExplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ExplicitOutputPort><ImplicitInputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f4d" ordering="1" parent="785a4b74:13161428a19:-7f50" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="785a4b74:13161428a19:-7f5c" interfaceFunctionName="Resistor" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionName="resistor" simulationFunctionType="DEFAULT" style="Resistor"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.01"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Resistor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="R"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="330.0" y="440.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f5b" ordering="1" parent="785a4b74:13161428a19:-7f5c" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f5a" ordering="1" parent="785a4b74:13161428a19:-7f5c" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitLink id="785a4b74:13161428a19:-7f2a"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="184.0" y="70.0"/><mxPoint as="targetPoint" x="240.0" y="70.0"/></mxGeometry><mxCell as="parent" id="-c3ae985:131513f8ae1:-7f2e" parent="-c3ae985:131513f8ae1:-7f2d"/><ImplicitOutputPort as="source" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7efb" ordering="1" parent="-c3ae985:131513f8ae1:-7efc" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><Orientation as="orientation" value="SOUTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-c3ae985:131513f8ae1:-7f09" ordering="1" parent="-c3ae985:131513f8ae1:-7f0b" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort></ImplicitLink><ImplicitLink id="785a4b74:13161428a19:-7f26"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="124.0" y="370.0"/><mxPoint as="targetPoint" x="200.0" y="400.0"/><Array as="points" scilabClass=""><mxPoint x="160.0" y="370.0"/><mxPoint x="180.0" y="370.0"/></Array></mxGeometry><mxCell as="parent" id="-c3ae985:131513f8ae1:-7f2e" parent="-c3ae985:131513f8ae1:-7f2d"/><ImplicitOutputPort as="source" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f64" ordering="1" parent="785a4b74:13161428a19:-7f65" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f4d" ordering="1" parent="785a4b74:13161428a19:-7f50" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort></ImplicitLink><SplitBlock id="785a4b74:13161428a19:-7f1f" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT"><mxGeometry as="geometry" height="7.0" width="7.0" x="307.0" y="367.0"/></SplitBlock><ImplicitInputPort connectable="0" dataType="UNKNOW_TYPE" id="785a4b74:13161428a19:-7f1e" ordering="1" parent="785a4b74:13161428a19:-7f1f" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort connectable="0" dataType="UNKNOW_TYPE" id="785a4b74:13161428a19:-7f1d" ordering="1" parent="785a4b74:13161428a19:-7f1f" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort connectable="0" dataType="UNKNOW_TYPE" id="785a4b74:13161428a19:-7f1c" ordering="2" parent="785a4b74:13161428a19:-7f1f" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="785a4b74:13161428a19:-7f1b"><mxGeometry as="geometry"><Array as="points" scilabClass=""/></mxGeometry><mxCell as="parent" id="-c3ae985:131513f8ae1:-7f2e" parent="-c3ae985:131513f8ae1:-7f2d"/><ImplicitOutputPort as="source" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f4f" ordering="1" parent="785a4b74:13161428a19:-7f50" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0"><Orientation as="orientation" value="SOUTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataType="UNKNOW_TYPE" id="785a4b74:13161428a19:-7f1e" ordering="1" parent="785a4b74:13161428a19:-7f1f" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort></ImplicitLink><ImplicitLink id="785a4b74:13161428a19:-7f20"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="326.0" y="290.0"/><mxPoint as="targetPoint" x="310.0" y="370.0"/><Array as="points" scilabClass=""><mxPoint x="320.0" y="360.0"/></Array></mxGeometry><mxCell as="parent" id="-c3ae985:131513f8ae1:-7f2e" parent="-c3ae985:131513f8ae1:-7f2d"/><ImplicitOutputPort as="source" connectable="0" dataType="UNKNOW_TYPE" id="785a4b74:13161428a19:-7f1c" ordering="2" parent="785a4b74:13161428a19:-7f1f" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f60" ordering="1" parent="785a4b74:13161428a19:-7f62" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort></ImplicitLink><SplitBlock id="785a4b74:13161428a19:-7f18" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT"><mxGeometry as="geometry" height="7.0" width="7.0" x="307.0" y="367.0"/></SplitBlock><ImplicitInputPort connectable="0" dataType="UNKNOW_TYPE" id="785a4b74:13161428a19:-7f17" ordering="1" parent="785a4b74:13161428a19:-7f18" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort connectable="0" dataType="UNKNOW_TYPE" id="785a4b74:13161428a19:-7f16" ordering="1" parent="785a4b74:13161428a19:-7f18" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort connectable="0" dataType="UNKNOW_TYPE" id="785a4b74:13161428a19:-7f15" ordering="2" parent="785a4b74:13161428a19:-7f18" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="785a4b74:13161428a19:-7f14"><mxGeometry as="geometry"><Array as="points" scilabClass=""/></mxGeometry><mxCell as="parent" id="-c3ae985:131513f8ae1:-7f2e" parent="-c3ae985:131513f8ae1:-7f2d"/><ImplicitOutputPort as="source" connectable="0" dataType="UNKNOW_TYPE" id="785a4b74:13161428a19:-7f1d" ordering="1" parent="785a4b74:13161428a19:-7f1f" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataType="UNKNOW_TYPE" id="785a4b74:13161428a19:-7f17" ordering="1" parent="785a4b74:13161428a19:-7f18" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort></ImplicitLink><ImplicitLink id="785a4b74:13161428a19:-7f13"><mxGeometry as="geometry"><Array as="points" scilabClass=""/></mxGeometry><mxCell as="parent" id="-c3ae985:131513f8ae1:-7f2e" parent="-c3ae985:131513f8ae1:-7f2d"/><ImplicitOutputPort as="source" connectable="0" dataType="UNKNOW_TYPE" id="785a4b74:13161428a19:-7f16" ordering="1" parent="785a4b74:13161428a19:-7f18" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f5d" ordering="1" parent="785a4b74:13161428a19:-7f5f" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort></ImplicitLink><ImplicitLink id="785a4b74:13161428a19:-7f19"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="326.0" y="460.0"/><mxPoint as="targetPoint" x="310.0" y="370.0"/></mxGeometry><mxCell as="parent" id="-c3ae985:131513f8ae1:-7f2e" parent="-c3ae985:131513f8ae1:-7f2d"/><ImplicitOutputPort as="source" connectable="0" dataType="UNKNOW_TYPE" id="785a4b74:13161428a19:-7f15" ordering="2" parent="785a4b74:13161428a19:-7f18" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="785a4b74:13161428a19:-7f5a" ordering="1" parent="785a4b74:13161428a19:-7f5c" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort></ImplicitLink><TextBlock id="785a4b74:13161428a19:-7f0e" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> -----------O </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="380.0" y="270.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7f0c" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> -----------O </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="380.0" y="350.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7f0a" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> -----------O </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="380.0" y="440.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7f07" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> <p style="margin-top: 0"> | </p> <p style="margin-top: 0"> | </p> <p style="margin-top: 0"> | </p> <p style="margin-top: 0"> | </p> <p style="margin-top: 0"> | </p> <p style="margin-top: 0"> | </p> <p style="margin-top: 0"> | </p> <p style="margin-top: 0"> | </p> <p style="margin-top: 0"> | </p> <p style="margin-top: 0"> | </p> </body> </html> "><mxGeometry as="geometry" height="180.0" width="40.0" x="50.0" y="490.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7eff" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> |<br>|<br>|<br>|<br>|<br>|<br> </body> </html> "><mxGeometry as="geometry" height="90.0" width="40.0" x="490.0" y="370.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7ef8" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> -----------O </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="80.0" y="500.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7ef5" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> ..&lt;---------------V------------------------------------&gt; </body> </html> "><mxGeometry as="geometry" height="40.0" width="240.0" x="120.0" y="500.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7ef2" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> O------------------- </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="380.0" y="500.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7eea" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> ---------------- </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="450.0" y="500.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7ee5" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> |<br>|<br>|<br>|<br>| </body> </html> "><mxGeometry as="geometry" height="90.0" width="40.0" x="490.0" y="440.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7edf" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> -----------O </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="470.0" y="350.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7edc" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> &lt;-------- </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="430.0" y="350.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7ed9" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> Rm </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="80.0" y="320.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7ed5" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> R1 </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="320.0" y="240.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7ed2" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> R2 </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="330.0" y="320.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7ece" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> R3 </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="330.0" y="410.0"/></TextBlock><TextBlock id="785a4b74:13161428a19:-7eca" parent="-c3ae985:131513f8ae1:-7f2e" simulationFunctionType="DEFAULT" value="<html> <head> <style type="text/css"> <!-- body { font-size: 11 pt; font-family: Arial,Helvetica; color: black } --> </style> </head> <body> 3-16(a) </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="190.0" y="540.0"/></TextBlock></root></mxGraphModel><mxCell as="defaultParent" id="-c3ae985:131513f8ae1:-7f2e" parent="-c3ae985:131513f8ae1:-7f2d"/></XcosDiagram>
\ No newline at end of file diff --git a/182/CH3/EX3.9/example3_9.sce b/182/CH3/EX3.9/example3_9.sce new file mode 100755 index 000000000..7259082f7 --- /dev/null +++ b/182/CH3/EX3.9/example3_9.sce @@ -0,0 +1,16 @@ + +// example 3-9 in page 53 +clc; +//given data +A=['a' 'b']; +Rm=1e+3;// coil resistance of 1 k ohm +Rs=890.7e+3;//multiplier resistance in ohm +Vf=0.7;//voltage drop across the diode in volt +//calculation +m=0;// reference to indicate a and b respectively +for n=75:-25:50 //voltages 50 and 75 volts + Iav=(0.637)*(((1.414*n)-2*Vf)/(Rs+Rm));// average current through pmcc instrument in ampere + m=m+1; + printf("(%c),\nIav for %d V is %.2f micro-A\n",A(m),n,Iav*10^6); + printf("pointer indication for %d V is %.2f FSD\n",n,10000*Iav); +end diff --git a/182/CH3/EX3.9/example3_9.txt b/182/CH3/EX3.9/example3_9.txt new file mode 100755 index 000000000..25bdeac4b --- /dev/null +++ b/182/CH3/EX3.9/example3_9.txt @@ -0,0 +1,6 @@ +9. (a),
+Iav for 75 V is 74.76 micro-A
+pointer indication for 75 V is 0.75 FSD
+(b),
+Iav for 50 V is 49.51 micro-A
+pointer indication for 50 V is 0.50 FSD
\ No newline at end of file |