diff options
Diffstat (limited to '182/CH12/EX12.2')
-rwxr-xr-x | 182/CH12/EX12.2/12_2.txt | 3 | ||||
-rwxr-xr-x | 182/CH12/EX12.2/example12_2.sce | 15 |
2 files changed, 18 insertions, 0 deletions
diff --git a/182/CH12/EX12.2/12_2.txt b/182/CH12/EX12.2/12_2.txt new file mode 100755 index 000000000..6a68e9e6a --- /dev/null +++ b/182/CH12/EX12.2/12_2.txt @@ -0,0 +1,3 @@ +
+2.correction figure=-6 W
+ wattmeter error=-5 percent
diff --git a/182/CH12/EX12.2/example12_2.sce b/182/CH12/EX12.2/example12_2.sce new file mode 100755 index 000000000..ce33edc21 --- /dev/null +++ b/182/CH12/EX12.2/example12_2.sce @@ -0,0 +1,15 @@ +// to find the wattmeter error and the correction figure
+// example 12-2 in page 357
+clc;
+//Data given
+V=114;// measured voltage in volt
+P=120;// indicated power in watt
+I=1;// current in ampere
+//calculation
+cf=V*I-P;// here power = v*i, capacitance in farad
+e=cf*100/P;//percentage error
+printf("correction figure=%d W\n",cf);
+printf("wattmeter error=%d percent",e);
+//result
+//correction figure=-6 W
+//wattmeter error=-5 percent
\ No newline at end of file |