diff options
Diffstat (limited to '3809/CH3/EX3.3/EX3_3.sce')
-rw-r--r-- | 3809/CH3/EX3.3/EX3_3.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/3809/CH3/EX3.3/EX3_3.sce b/3809/CH3/EX3.3/EX3_3.sce new file mode 100644 index 000000000..ebe8d6bf2 --- /dev/null +++ b/3809/CH3/EX3.3/EX3_3.sce @@ -0,0 +1,24 @@ +//Chapter 3, Example 3.3 +clc +//Initialisation +v1=30 //voltage +r1=10*10**3 //resistance in ohm +r2=10*10**3 //resistance in ohm +r3=10*10**3 //resistance in ohm + +//Calculation +voc=v1/2 //open circuit voltage +r23=(r2*r3)/(r2+r3) //resistance in parallel in ohm +rt=r1+r23 //resistance in ohm +i1=v1/rt //current in ampere +isc=i1/2 //short circuit current in ampere +R=voc/isc //resistance in ohm + + +//Results +printf("For Thevenin Circuit \n") +printf("V = %d V\n",voc) +printf("R = %d kOhm\n\n",R/1000) +printf("For Norton Circuit \n") +printf("I = %d mA\n",isc*1000) +printf("R = %d kOhm",R/1000) |