In [1]:
%pylab inline


Populating the interactive namespace from numpy and matplotlib

In [16]:
from sympy import *
from pylab import *

In [3]:
import matplotlib.pyplot as plt

In [4]:
from sympy.interactive import printing
printing.init_printing(use_latex=True)
from IPython.display import display
a,x,Z = symbols('a,x,Z')

Problem 1

1D

The partition function for 1D system is

$Z = \sum_i e^{-\beta E_i}$

The probability on a state $E_i$

$$P(E_i) = \frac{e^{-\beta E_i}}{Z}$$

In our case, there are only two possible energy states, $E_1 = -\mu B$, $E_2 = \mu B$. So the magnetization is

$$ M = \mu N \left( e^{\beta \mu B} - e^{-\beta \mu B} \right)/Z$$

Write magnetization as a function of $T$ and $T$.

$$M(T,B) = \mu N \frac{ \left( e^{\mu B /(k_B T)} - e^{- \mu B/(k_B T)} \right) } { \left( e^{\mu B /(k_B T)} + e^{- \mu B/(k_B T)} \right) } = \mu N \tanh(\mu B /(k_B T))$$
$M$ vs $T$ Plots

To plot $M~T$, we need to make a quantity with dimension of $T$ . $\bar T = \mu B/k_B$ will do the work.

$$\frac{M(T)}{\bar M} = e^{\bar T/T} - e^{-\bar T/T} $$

in which, $\bar M = \mu N$ .

At $T \rightarrow \infty $ limit, we have the magnetization $M$ is 0. This is because high temperature distroys the alignment of dipoles.


In [5]:
tanh(0)


Out[5]:
$$0.0$$

At $T\rightarrow \infty$, we have $\frac{M}{\bar M}$ 1.


In [6]:
tanh(inf)


Out[6]:
$$1.0$$

At very low temperature, the dipoles have no random motion so all dipoles aligned together thus $M$ is 1.

Now plot out this result.


In [7]:
t = linspace(0, 100, 1000)
mt = tanh(1/t)

fig11 = plt.figure()

axes = fig11.add_axes([0.1, 0.1, 0.8, 0.8]) # left, bottom, width, height (range 0 to 1)

axes.plot(t, mt, 'r')

axes.set_xlabel('T bar')
axes.set_ylabel('M bar')
axes.set_title('M ~ T');


-c:2: RuntimeWarning: divide by zero encountered in divide

This plot agrees with our results of the limits.

$M$ vs $B$ Plots

Define a unit magnetic induction $\bar B = k_B T/\mu$. Write the magnetization as a function of $B$.

$$ \frac{M(B)}{\bar M} = \tanh(B/\bar B) $$

At the limit of $B\rightarrow 0$, we have $M\rightarrow 0$, which is because no magnetic field is there to align the dipoles. (No interactions between dipoles.)

At the limit of $B\rightarrow \infty$, we have $M\rightarrow 1$, which is because infinite magnetic field can align all the dipoles to one direction no matter how strong the thermal random motion is.

Plot the result.


In [8]:
b = linspace(0, 5, 100)
mb = tanh(b)

fig12 = plt.figure()

axes = fig12.add_axes([0.1, 0.1, 0.8, 0.8]) # left, bottom, width, height (range 0 to 1)

axes.plot(b, mb, 'r')

axes.set_xlabel('B/Bbar')
axes.set_ylabel('M/Mbar')
axes.set_title('M ~ B');


Heat Capacity

Energy of the system is

$$ E = - \mu B N \tanh(\mu B /(k_B T)) $$

In [9]:
t13e = linspace(0, 5, 100)
e1 = -tanh(t13e)

fig13e = plt.figure()

axes = fig13e.add_axes([0.1, 0.1, 0.8, 0.8]) # left, bottom, width, height (range 0 to 1)

axes.plot(t13e, e1, 'r')

axes.set_xlabel('T/Tbar')
axes.set_ylabel('E/Ebar')
axes.set_title('E ~ T');


Heat capacity is

$$ C = \frac{\partial}{\partial T} E = \frac{\mu^2 B^2 N}{k_B} \frac{ (1 - \tanh^2(\mu B/(k_B T)) }{T^2} $$

In [10]:
t13 = linspace(0, 5, 100)
c1 = tanh(t13)

fig13 = plt.figure()

axes = fig13.add_axes([0.1, 0.1, 0.8, 0.8]) # left, bottom, width, height (range 0 to 1)

axes.plot(t13, c1, 'r')

axes.set_xlabel('T/Tbar')
axes.set_ylabel('C/Cbar')
axes.set_title('C ~ T');


2D

The energy of a dipole can be written as $E(\theta) = -\mu B \cos\theta$, in which $\theta$ is the angle between the dipole and magnetic field.

Partition function is

$$ Z = \int _ \theta 2 e^{-\beta E(\theta)} \mathrm d \theta = 2\pi \mathrm {BesselI}(0, \mu B \beta) $$

where $\mathrm{BesselI}$ is the modified Bessel function of the first kind.

Then we can calculate magnetization, which is given by

$$ M = \frac{1}{Z}\int _ \theta 2N\mu \cos\theta e^{-\beta E(\theta)} d \theta $$

The result given by Mathematica is (so bad that I can't make sympy to deal with such integrations.)

$$ M = \mu N \frac{ \mathrm{BesselI}(1, B \beta \mu) }{ \mathrm{BesselI}(0, B \beta \mu) }$$

Energy should be

$$ E = - \mu B N \frac{ \mathrm{BesselI}(1, B \beta \mu) }{ \mathrm{BesselI}(0, B \beta \mu) }$$

Heat capacity is the derivitive of energy over temperature.

$$ C = B^2 \mu^2 N \frac{-2 \mathrm{BesselI}(0, B \beta \mu)^2 + \mathrm{BesselI}(0,\mu\beta B)( \mathrm{BesselI}(0,\mu\beta B) + \mathrm{BesselI}(2,\mu\beta B) ) }{2 k T^2 \mathrm{BesselI}(0, B \beta \mu)^2} $$

Plot out these results using Mathematica.

3D

Energy of a dipole is $E(\theta) = -\mu B \cos\theta$.

Then we can calculate the partition function, which is

$$ Z = \int_\theta \int _ \phi N e^{-\beta E(\theta)}\sin\theta d\theta d \phi = 4\pi N\frac{ \sinh(\mu B \beta)}{\mu B \beta} $$

Magnetization is

$$ M = -\frac{\mu N}{\mu B \beta} + \mu N \coth(\mu B \beta) = \mu N \left( - \frac{\bar B}{B} + \coth \left(\frac{B}{\bar B}\right) \right) $$

where $\bar B = \frac{1}{\mu \beta}$. Define $\bar M = \mu N$ .Then we can write down the dimensionless equation, which is

$$ \frac{M}{\bar M} = - \frac{\bar B}{B} + \coth \left(\frac{B}{\bar B}\right) $$

Total energy is

$$ E = \frac{1}{Z} \int _ \phi \int _ \theta (-\mu B \cos\theta N) e^{-\mu E(\theta)}\sin\theta d \theta d\phi = - N \left( \frac{1}{\beta} - B \mu \coth(\mu \beta B) \right) $$

Take the derivative with respect to temperature, we have the heat capacity.

$$ C = N \left( 1 - \left(\frac{\bar T}{T} \right)^2 \mathrm{csch}^2 \left( \frac{\bar T}{T} \right) \right) $$

Plot out the results.

Problem 2

First law of thermodynamics

Energy can be transfered from one form to another, or from one system to another, but can never be disapear. The total energy of a closed system is conserved. For any infinitesimal process, the change of internal energy is equivalent to the sum of work done to other systems and heat obsorbed from other systems, which is to say, in the language of mathematiccs,

$$ \mathrm d U = \mathrm d Q + \mathrm d W $$

Entropy

Basicly, at high temperature and in large systems, entropy is the dominant of all marco properties of a system. Entropy indicates the reversibility of a process, defines Kelvin and restricts us from reaching absolute zero.

The most important property of entropy is that it is a function that only depends on state of the system not the path. This property can lead us to many interesting results.

Free energy

As I have learned in undergrad stat mech, free energy is a quantity defined to make our life easier when dealing with systems which has fixed temperature and fixed volume. In that case, free energy can never grow larger. Mathematically,

$$ \mathrm d F \leq 0 $$

Suppose we have a gas system going through a reversible process, free energy

$$ \mathrm d F = - S\mathrm d T - p \mathrm d V $$

For fixed $T$ and $V$, we have $\mathrm d F = 0$. For irreversible process, it is less than 0.

Chemical potential

Chemical potential is the increased Gibbs free energy when one mole particle is added to the system.