blob: 3c175ea8785776c5c3c6564c34f68bdf7793d10d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Example 10.3
// Computation of no-load voltage if the voltage regulation is 2.3 percent
// Page No. 401
clc;
clear;
close;
// Given data
Vrated=240; // Rated voltage
VR=0.023; // Voltage regulation
// No-load voltage if the voltage regulation is 2.3 percent
Vnl=Vrated*(1+VR);
// Display result on command window
printf("\n No-load voltage if the voltage regulation is 2.3 percent = %0.1f V ",Vnl);
|