Learn R Programming

isingLenzMC (version 0.2.5)

totalEnergy1D: 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.

Examples

Run this code
  n             <- 10 # 10 spin sites
  mySites       <- genConfig1D(n) # Generate sites
  # only short-range part
  myTotalEnergy <- totalEnergy1D(mySites, 1.0, 0.0)

Run the code above in your browser using DataLab