blob: a7b2cb0fb4620618a3e733fa6d0ac0a2e85c8157 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// To determine the time of operation of relay .
clear
clc;
If=4000;// fault current
I=5*1.25;// operating current of relay
CT=400/5;// CT ratio
PSM=If/(I*CT);// plug setting multiplier
mprintf("PSM=%.3f\n",PSM);
mprintf("operating time for PSM=8 is 3.2sec.\n");
mprintf("actual operating time = 1.92 sec.");
|