blob: 0b9d71df6c39a929971ba1ef5513c69aeabc37c4 (
plain)
1
2
3
4
5
6
|
//chapter 2:THE DEVICE
//Example 2.6////problem 2.1//
Ic=5;//capacitive current in milli amperes//
C=35;//equivalent capacitance in pico farad//
difV=Ic*10^3/C;//value of dv/dt that can trigger the device in V/microseconds//
printf('value of dv/dt that can trigger the device=%fV/microseconds',difV);
|