answersLogoWhite

0

Let's do some simple math: If a compressor motor takes 3amps to make 100psi at any given time interval (we'll use 5min) it breaks down to about 360-400watts for that 5minutes. No we get a dynamo and backfeed the air through it. The 90 psi will immediately start to drop off, and even if it didn't and you had it connected through. The best you could do (which is impossible) is break even. You'll not save any effort, or money. So although your answer is "yes" I'd have to follow it it with a "not for long."

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

How much a electricity can a generator hold?

None. A generator generates electricity, it does not store it.


What equipment is needed to use hydroelectricity?

To tap hydroelectricity, there must be a dam which can store water and let it flow rapidly through a sink hole. The pressure of the falling water can drive generator turbines and these will generate electricity.


Can a generator store electricity?

No, a generator does not store electricity. It produces electrical energy by converting mechanical energy into electrical energy. Any excess electricity generated can be used in real-time or stored in batteries for later use.


What charge generator was developed around 1930?

A type charge generator developed around 1993


Where can one rent a portable generator in Halifax?

One can generate a portable generator at the hardware store. Halifax, Pennsylvania is the home of many hardware stores including ACE Hardware as well as Home Depot.


What does a battery use to make electricity?

Batteries do not generate electricity; they only store a charge that is generated elsewhere. After that charge is used up, they need to be recharged or replaced.


How do you convert static electricity to electrical energy?

Static electricity can be converted to electrical energy using devices like a Van de Graaff generator or a Wimshurst machine, which collect and store static charge. This stored charge can be discharged through a circuit to generate an electrical current or power small devices. However, the amount of energy generated from static electricity is typically limited and not suitable for large-scale power generation.


How would you generate electricity for a 5 and 6 grade science fair?

Maybe a solar panel? You could try to make a miniature magnet generator; similar to the Joseph Newman machine. You could try some kind of small steam generator or just a small store bought generator. You could try some kind of friction or a small water fall. Look online or in library books on this subject for a better answer or for info on how to make this energy.


Can photovoltaic cells store energy?

Photovoltaic cells generate electricity when exposed to sunlight. They do not store energy themselves, but the electricity they produce can be stored in batteries or used immediately.


When The Power Goes Out?

In the event of a storm that knocks the power out to your home, you can use a generator to keep your electricity going. Try to only use the generator when you have to because many of them operate off of gas, and if you run out, you might not be able to get to the store to get more.


Could you use gravity to produce electricity?

Yes, but only indirectly. Gravity is currently used to generate electricity. A typical example is hydroelectric power. Water falls down a shaft (because of gravity). The falling water drives a turbine in the shaft, and the turbine spins a generator, which produces electricity. There is no means to convert gravity itself directly into electricity.


How do you write a c plus plus program that randomly generates 100 integer values and store them in an array?

// generate 100 integers in the closed range [1:9] and store in an array. std::default_random_engine generator ((unsigned) time (0)); std::uniform_int_distribution<int> distribution (1,9); std::array<int, 100> a; for (size_t loop=0; loop!=100; ++loop) a[loop] = distribution (generator);