answersLogoWhite

0

15metres

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

What is 3 examples of gravitational energy?

Water stored in a hydroelectric dam has gravitational potential energy due to its position above ground level. A rock held at the edge of a cliff has gravitational potential energy because of its height above the ground. A roller coaster at the top of a loop has gravitational potential energy because of its position above the track.


How much height to loop the loop?

The height of the loop depends on the entry speed The diameter is usually adjusted to provide 1g acceleration in the upward direction to the upside-down passengers. Technically, if the entry speed is the variable, and you don't worry about smashing the passengers or the g-forces, the loop can be ANY size.


What is an aviation loop de loop?

It means to fly upwards from level, till you do a complete 'O' and come back to level flight


A block of mass m slides down an inclined plane into a loop-the-loop of radius r At what vertical height on the inclined plane in terms of the radius of the loop must the block be released if it is?

The block must be released from a vertical height equal to 2 times the radius of the loop at the top of the inclined plane. This height allows the block to have sufficient velocity at the top of the loop to overcome gravity and complete the loop without falling off.


Why does the height affect the loop on a marble rollercoaster?

I would have gravitational potential energy, which is energy due to height.


Why barometric loop height is 33.7 feet?

The only thing I can tell you is: For every 33.7 feet up from sea level you loose 1 atmospheric pressure and for every 33.7 feet below sea level you increase 1 atmospheric pressure... It is to my knowledge 33.7 is the measurement for a barometric loop... I think it has something to do with mercury rising up in a glass tube?


How much height a marble will need to make a complete loop of a certain size.?

l


Is a loop of relatively cool gas that extends above the photosphere?

prominece


If a firebox is elevated the hearth should be?

By Federal guidelines a Hearth has to be at least the height of the Firebox if not above the Firebox. If a firebox is elevated a hearth should be of equal height or higher. There may be a loop hole if the Firebox is more than 12 inches off the ground, you may not be required to have a Hearth at this point, but I'm not positive.


How much height velocity and radius of the loop for a 200kg roller coaster to obtain a perfect loop?

It's phycotic. You need a lobabamoty. Otherwise, you'd know that you need 2!


What do you mean by loop check?

A loop check is a condition that is checked everytime a loop is executed. It is usually the condition that needs to match for the loop to terminate. Until this condition is matched the loop will continue to execute. Ex: for(int i=0; i<10; i++) { … } In the above for loop "i<10" is the loop check condition and this loop will execute until the value of i is less than 10. It starts at 0 and gets incremented by 1 everytime the loop completes an iteration of execution


How do you use a for loop?

The FOR loop syntax is as follows for(counter initiation/declaration; condition; counter increment){ code.... } example: for(int i = 0; i < 10; i++){ System.out.println(i); } In the above code the variable i is the loop counter. We have initiated in the first part of the for loop. The second part is the condition. The loop would be executed until the value of i is less than 10. The third is the loop increment to ensure that the value of i would not remain the same causing an infinite loop. for(int i = 0; i < 10; ){ System.out.println(i); } The above for loop usage is an infinite loop because the value of i would never change and the loop would go on forever. for(int i = 0; i < 10; ){ System.out.println(i); i++; } You can even opt to have the loop counter incremented inside the loop construct. This would make it similar to a while loop. but anyways the purpose of the increment remains the same.