Wednesday, January 19, 2022

Is Overunity, Free Energy, Real?

Short answer: No! Or rather it depends.

It's either yes or no, right? I mean...come on, man!! Either you can have efficiencies above 100% or not...right?!!???!

Well, I'll ere on the side of "it depends." On what? 

Answer: How you define "efficiency?" More specifically, what reference are you comparing your output to get the percent efficiency?

For example, the concept of a Carnot Efficiency in a thermal cycle reference the high temperature of the system (Source: energyeducation.ca):

  

The lowest "Low Temperature" would be zero; the highest efficiency is with the highest High Temperature".

Note: when I reference "overunity", I don't mean the little desktop models that may run for a few days and touch that 100% conversion for a little while.

https://img1.cgtrader.com/items/977432/f3d3ef0aa8/perpetual-motion-machine-3d-model.jpg 

(Source: CGTrade.com)

I mean truly useful devices, where it can produce much more energy than it needs to overcome friction.

Well, if a device can draw from an infinite source, say the Sun, and convert that, with only a little effort to get started...wouldn't THAT be great!!

Physical Laws 

The Law of Conservative of Energy is pretty clear (per Wikipedia):

states that the total energy of any isolated system (for which energy and matter transfer through the system boundary are not possible) is constant; energy can be transformed from one form to another, but can be neither created nor destroyed.

The second part is probably the easier one to understand by most people; I paraphrase:

Energy can be neither created nor destroyed, but can only change forms.

Some wise-cracker may say, "well, what about E=mc2? Energy can be converts to mass. Well, again it just changes form. But I digress.

The point is...applying this universal, unalterable LAW means that overunity is impossible.

 Current "Renewables"

By current convention, solar panels, wind turbines, and wave technologies are not marketed as "overunity" or free energy devices; rather as "renewables" since the sources renew, in the case of solar, panels "daily. But where is the energy actually coming from?

The sun? Well, yes for solar panels.

The efficiency factor is defined against how much of the energy that is making it to the panel can actually get converted. Ok. But inside the panels, the efficiency would be (near) 100%...the panel does not really loose anything, right? In other words, we don’t, in mechanical and electrical systems, reference external limitations. But we do this for solar panels. Why?

We don't have to "restart" the panels...we just wait, right?

It’s probably a debate that’s deeper than this article.

Where does wind get its energy? Well, the sun of course. But again, we don’t apply an efficiency against THAT energy since it’s internal to the overall mechanism. Even if you look at the mechanical aspects, with friction, turbulence, etc., a wind turbine overcomes those losses with excess energy from the external wind. So, again, we could argue that a wind turbine is overunity...and we don't need to restart everyday.

Same arguments can be made for waves. Waves get their energy from the wind which get its from the sun. Waves can produce far more energy that we can extract, certainly enough to far overcome its internal losses.

So, for each of these, "we've" defined them by how much energy that can draw from the actuall contact...with reference to the immediate mechanical...water for the waves, and the subtract the losses from inside the system.

What about magnetics?

So, why not magnetic? (Theory alert!! Nikola Tesla seemed to working in that direction.)

What if we consider that the magnetic flux experienced by our Earth’s iron-based core is generated by the sun’s electro-magnetic flux. The geo-magnetic flux generates magnetic currents and eddies that could, in turn, interact with smaller man-made electromagnets and permanent magnets, producing other magneto-electric currents, is that possible?

Could THAT produce overunity?

Well, only if you chose the references wisely.

Hmm...Just think about it…and the possibilities.


Sunday, August 2, 2020

Blogging with Latex Equations

My First LaTeX Equation in Blogger

$$\sin^2 \theta + \cos^2 \theta = 1$$

First, for those that don't know what Latex is have a look at the Latex Project page: Latex.

How did I do it? Well, after a couple of tries based on various Youtube posts and other blogs...I found this post from Computer Revolution:


It was really easy...and it worked. But I'll summarize here:

1. Copy this header code:

<script src="http://cdn.mathjax.org/mathjax/latest/MathJax.js"
type="text/javascript"> MathJax.Hub.Config({ extensions: ["tex2jax.js","TeX/AMSmath.js","TeX/AMSsymbols.js"],
      jax: ["input/TeX", "output/HTML-CSS"], tex2jax: { inlineMath: [ ['$','$'], ["\\(","\\)"] ], displayMath: [ ['$$','$$'], ["\\[","\\]"] ], }, HTML-CSS": { availableFonts: ["TeX"]        }
}); </script>


2. Paste into your Theme's HTML

I use Blogger.com for my posts, but I would expect this would work for any blogging platform that lets you edit the HTML code directly. So, for example, in Blogger, click on Theme, click the options icon and select Edit HTML.
  
Find the <head> in the code (it should be close to the top of the page). Paste the header code directly under <head>.

What does this do? Well, it simply loads the necessary Javascript extension. This will then apply to your entire website with this theme. Keep in mind, this does seem to break the preview of the theme in the Themes selection page, but that should be ok.

3. Create your equations with impunity

Using the same syntax as standard Latex, single-dollar signs $...$ for inline equations like: $\pi$ to get: $\pi$; double-dollar signs for newline and centered, like $$x=\alpha$$ to get: $$x=\alpha$$ or \begin{equation}...\end{equation} (with the backslashes), to get something like:

\begin{equation} \sum \dot{m}_i - \sum \dot{m}_o = \frac{dM}{dt} \end{equation}

[Sidenote: Something I need to figure out is how to display the dollar signs without them getting interpreted as Latex equation code. 😕 Anyone know how?)

Update!!! I got it! It's probably not the right way to do it, but I surrounded the Latex code with: <code>...</code>. You'll have to do this in the HTML Editor though, but that works for me.] 😁

Like this:

Hope this helps everyone...it was certainly a worthwhile exercise for me. Cheers!

Wednesday, July 29, 2020

Test Latex

My First LaTeX Equation in Blogger

$$\sin^2 \theta + \cos^2 \theta = 1$$

How did I do it? Well, after a couple of tries based on various Youtube posts and other blogs...I found this post from Computer Revolution:


It was really easy...and it worked. But I'll summarize here:

1. Copy this header code:

<script src="http://cdn.mathjax.org/mathjax/latest/MathJax.js"
type="text/javascript"> MathJax.Hub.Config({ extensions: ["tex2jax.js","TeX/AMSmath.js","TeX/AMSsymbols.js"],
      jax: ["input/TeX", "output/HTML-CSS"], tex2jax: { inlineMath: [ ['$','$'], ["\\(","\\)"] ], displayMath: [ ['$$','$$'], ["\\[","\\]"] ], }, HTML-CSS": { availableFonts: ["TeX"]        }
}); </script>


2. Paste into your Theme's HTML

I use Blogger.com for my posts, but I would expect this would work for any blogging platform that lets you edit the HTML code directly. So, for example, in Blogger, click on Theme, click the options icon and select Edit HTML.
  
Find the <head> in the code (it should be close to the top of the page). Paste the header code directly under <head>.

What does this do? Well, it simply loads the necessary Javascript extension. This will then apply to your entire website with this theme. Keep in mind, this does seem to break the preview of the theme in the Themes selection page, but that should be ok.

3. Create your equations with impunity

Using the same syntax as standard Latex, single-dollar signs $...$ for inline equations like: $\pi$ to get: $\pi$; double-dollar signs for newline and centered, like $$x=\alpha$$ to get: $$x=\alpha$$ or \begin{equation}...\end{equation} (with the backslashes), to get something like:

\begin{equation} \sum \dot{m}_i - \sum \dot{m}_o = \frac{dM}{dt} \end{equation}

[Sidenote: Something I need to figure out is how to display the dollar signs without them getting interpreted as Latex equation code. 😕 Anyone know how?)

Update!!! I got it! It's probably not the right way to do it, but I surrounded the Latex code with: <code>...</code>. You'll have to do this in the HTML Editor though, but that works for me.] 😁

Like this:

Hope this helps everyone...it was certainly a worthwhile exercise for me. Cheers!

Featured Post

Is Overunity, Free Energy, Real?

Short answer: No! Or rather it depends. It's either yes or no, right? I mean...come on, man!! Either you can have efficiencies ab...