diff options
Diffstat (limited to '3159/CH7/EX7.2')
-rwxr-xr-x | 3159/CH7/EX7.2/Ex7_2.sce | 8 | ||||
-rwxr-xr-x | 3159/CH7/EX7.2/Ex7_2.txt | 3 |
2 files changed, 11 insertions, 0 deletions
diff --git a/3159/CH7/EX7.2/Ex7_2.sce b/3159/CH7/EX7.2/Ex7_2.sce new file mode 100755 index 000000000..b0958caf6 --- /dev/null +++ b/3159/CH7/EX7.2/Ex7_2.sce @@ -0,0 +1,8 @@ +// Find minimum number of component in system
+clc
+p = 4 // number of phases of system
+f = 0 // number of degree of system
+
+printf("\n Example 7.2")
+C = f+p-1 // components number
+printf("\n Minimum number of components in system is %d",C)
diff --git a/3159/CH7/EX7.2/Ex7_2.txt b/3159/CH7/EX7.2/Ex7_2.txt new file mode 100755 index 000000000..5a18d1b0f --- /dev/null +++ b/3159/CH7/EX7.2/Ex7_2.txt @@ -0,0 +1,3 @@ +
+ Example 7.2
+ Minimum number of components in system is 3
\ No newline at end of file |