blob: d3b5bb8872186e51476538d823cc8121db608f79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//Example 2// Ch 12
clc;
clear;
close;
// given data
V=100;//in kV
Em=55;//max permissible gradient in kV/cm
//voltage gradient at the conductor surface is inversely proportional to the core radius
r=V*sqrt(2)/Em;//conductor radius in cm
printf("conductor radius %f cm",r)
|