totalEnergy1D {isingLenzMC} | R Documentation |
Total energy in periodic boundary conditions in 1D
Description
Given a vector of flip sites, 1s or -1s, representing up and down spins respectively, return total energy, applying periodic boundary conditions, i.e., cyclic. This function calls the C function 'totalEnergy1D'.
Usage
totalEnergy1D(x, J, H)
Arguments
x |
1D Spin sites on the lattice. |
J |
The strength of interaction. |
H |
The value of the external field. |
Value
Returns the total energy.
Author(s)
Mehmet Suzen <mehmet.suzen@physics.org>
Examples
n <- 10 # 10 spin sites
mySites <- genConfig1D(n) # Generate sites
# only short-range part
myTotalEnergy <- totalEnergy1D(mySites, 1.0, 0.0)
[Package isingLenzMC version 0.2.5 Index]