answersLogoWhite

0


Best Answer

Depends on manufacturer..Normally the ratings are as follows

1. Service short circuit breaking capacity is 7.5 kA

2. Rated short circuit breaking capacity is 10 kA.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the 'short circuit capacity' of a 32A 60898 MCB?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What rating mcb used for 1.5 t ac?

32A MCB to be used


A 32A breaker was controlling a lighting circuit but is now on a 6A breaker which is now buzzing what should you do?

Answer for countries in Europe and other world areas running a 50 Hz supply service.Depending on the load of your lighting circuit. I would measure the current with an inductive amp meter. once you know the current required for your lighting circuit, you then install a circuit breaker which is 15% higher than your load. eg, load is 10A. 10A load + 15 % = 12A breaker (15 A is ok as the breaker is used to protect the wiring and should be rated in consequence of your wiring by 25% less or its current rating, or less, not the load)The humming of your lighting circuit breaker indicates that your breaker is either faulty, or having a difficult time keeping a closed circuit. Or simply that the manufacturer produced a breaker that hums by nature of its construction.


Call by value in c programming?

Its way of passing arguments to a function.In this method the value of actual arguments(the arguments in the function call)remains unchanged. changes that we make are effected only to the formal arguments.eg.#include void modify(int,int);// function prototype. this is given to make the compiler aware that there is a function modify. if we didnt do this a error will be shown. otherwise the function body should be written before the function callmain(){int a,b;printf("enter two numbers");scanf("%d %d",&a,&b);modify(a,b);// function call the parameters a and b are actual arguments.printf(" a and b in the main %d and %d",a,b);}void modify(int a,int b)// function header the parameters no1 and no2 are called as formal arguments.{a=a*3;b=b*3;printf(" a and b in function %d and %d",a,b}output:enter two numbers 32a and b in function 9 and 6a and b in the main 3 and 2.this is a program to multiply 3 to the numbers given by the user . here we use function and the arguments are passed by call by value method.here the value of the formal arguments are altered withinthe function but no change happens to the actual arguments . the values in the main does change even after the function call.