blob: 4aede180bf548ef0f77812d104f9bfc1bfd813cc (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Chapter6
// Page.No-222, Figure.No-6.19
// Example_6_12_a
// Load current
// Given
clear;clc;
Vin=5;V1=1;
R=10*10^3;
Il=Vin/R; // Load current
printf("\n Load current is = %.5f A \n",Il)
|