Answer:2%
When the voltages between the three phases are not equal, the current increases dramatically in the motor winding's, and if allowed to continue, the motor will be damaged.
Explanation:
Answer:
insert (array[] , value , currentsize , maxsize )
{
if maxsize <=currentsize
{
return -1
}
index = currentsize-1
while (i>=0 && array[index] > value)
{
array[index+1]=array[index]
i=i-1
}
array[i+1]=value
return 0
}
Explanation:
1: Check if array is already full, if it's full then no component may be inserted.
2: if array isn't full:
- Check parts of the array ranging from last position of range towards initial range and determine position of that initial range that is smaller than the worth to be inserted.
- Right shift every component of the array once ranging from last position up to the position larger than the position at that smaller range was known.
- assign new worth to the position that is next to the known position of initial smaller component.
Answer:
The split is given by including spaces in both tabs
Explanation:
The bracket notation can be used to indicate the split. Here is an example:
String [ ] parts = s. split ( "[/]")
Answer:
43248 newtons.
Explanation:
Force = mass x accelerations and units of force are newtons which are given in the question.
here mass = 125 of air and 2.2 of fuel, total = 125+2.2=127.5kg/s and the velocity of the exhaust is 340m/s.
force = 340m/s * 127.5kg/s = 43248 newtons technically this is wrong (observe units) but i will expalin how i have taken acceleration as a velocity here and mass/unit time as simply mass.
see force is mass times acceleration or deceleration, here our velocity is not changing therefore it is constant 340m/s but if it were to change and become 0 in one second then there would be -340m/s^2 (note the units ) of deceleration and there would be force associated with it and that force is what i have calculated here. similarly there would be mass in flow rate of mass per second, which is also in that one second of time.
let's calculate error.
error = (actual-calculated)/actual. = (43248-60000)/43248= -38.734% less is ofcourse greater than 2%.
So the load cell is not reading correct to within 2% and it should read 43248newtons.