answersLogoWhite

0

Approx. 280 VRMS. Vpeak * 0.707 = Vrms

User Avatar

Wiki User

16y ago

What else can I help you with?

Continue Learning about Engineering

What does 1714 mean in hydraulics?

ok....let us say we have one horspower. So, we have 33 000 (ft.lb)/min = (1 psi * 1 gallon/min) * (a constant) Again, we have 396 000 (in.lb)/min =(1lb/in^2) * (231 in^3)/min * (constant) Now, if you cancel all the units y9ou end up with: 396 000 = 231 * Constant And to make the equiation correct: 396 000/(231) =Constant = 1714


How many amp hours in BXT-65-650 battery?

Difficult. The manufacturers of car batteries have become extremely coy about the performance parameters of their products, probably because they don't want to be forced to meet them by a court. However, I would suspect that it would be in the vicinity of 30-40 ampere hours. That means that it can deliver 30-40 amps for one hour, so at a voltage of 13.2 volts, that means 396 - 528 watt-hours, ignoring the fact that the voltage decreases as it discharges. The "Cold cranking" current is a red herring...that is just the current it can supply for a short time, limited by the internal resistance of the battery. <<>> Battery manufactures have gone to a Reserve Capacity rating which is more realistic than using the Amp-Hour rating. Reserve capacity is the number of minutes that a battery can maintain a useful voltage under a 25 ampere discharge at a temperature of 25 degrees C. To maintain a high RC number a battery requires higher quality cell materials. The RC rating of a BXT-65-650 is 130. To convert RCR (Reserve Capacity Rating) to Ampere-Hours at the 25 amp rate, multiply RCR by .4167.


Convert the following binary and decimal number 396 into respective number system?

2 396 R 2 198 0 2 99 0 2 49 1 2 24 1 2 12 0 2 6 0 2 3 0 2 1 1 0 1


How would I contact the designer of the Aquashel floating house Tony Gilbert featured in Popular Science Feb 1984?

his phone is 305 396 4030 miami beach


Writes a c program to find the sum of all integers greter than 100 and less than 200that are divisible by 7?

int main() { int total = 0; for(int i = 101; i < 200; i++) { if(i % 7 == 0) total += i; } printf("total = %d\n", total); return 0; }