blob: 42d4b7e9fb89f6501acf7a3ee182649c997c7038 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
clc
//
//
//
//Variable declaration
C=70*10**-12 //Cable Capacitance
L=0.39*10**-6 //Cable Inductance
//Calculations
Z0=(sqrt(L/C))
//Result
printf("\n The Characteristic Impedence is %2.2f Ohm",Z0)
|