Skip to main content

Writing here is not for fun

Here, I'm going to write about conversion of energy. There will be some equations and computations, which is the main reason I've chosen to blog with ipython (or Jupyter) notebook. I'll use Python and Julia for the calculations. It can be as simple as energy requirement to pump a liquid, i.e., $$w=Q\Delta p$$ where $w$ [J/s] is work , $Q$ [m^3/s] is the volumetric flow rate, and $\Delta p$ [Pa] is the pressure difference. The calculation is done in Python as

In [1]:
Q= 1000. # m^3/s
dp= 10e5 # Pa
W= Q*dp
Out[1]:
1.0e9

It was a very simple example. I'll be back with more.

Comments

Comments powered by Disqus