BraWl
|
Functions/Subroutines | |
subroutine, public | energy_trajectory_writer (filename, step_number, energy) |
Subroutine to write energy of a Metropolis simulation trajectory to a plain text file. | |
subroutine, public | asro_trajectory_writer (filename, step_number, asro) |
Subroutine to write ASRO of a Metropolis simulation trajectory to a plain text file. | |
subroutine, public | diagnostics_writer (filename, temps, energies, c, acceptance) |
Subroutine to write outputs of a Metropolis simulation to plain text file. | |
subroutine, public metropolis_output::asro_trajectory_writer | ( | character(len=*), intent(in) | filename, |
integer | step_number, | ||
real(real64), dimension(:,:,:) | asro ) |
Subroutine to write ASRO of a Metropolis simulation trajectory to a plain text file.
filename | Name of file to which to write |
step_number | Index of current MC trial step |
energy | Simulation energy to write |
Definition at line 66 of file metropolis_output.f90.
subroutine, public metropolis_output::diagnostics_writer | ( | character(len=*), intent(in) | filename, |
real(real64), dimension(:), intent(in), allocatable | temps, | ||
real(real64), dimension(:), intent(in), allocatable | energies, | ||
real(real64), dimension(:), intent(in), allocatable | c, | ||
real(real64), dimension(:), intent(in), allocatable | acceptance ) |
Subroutine to write outputs of a Metropolis simulation to plain text file.
filename | Name of file to which to write |
temps | Array of simulation temperatures |
energies | Array of simulation energies |
C | Array of simulation heat capacities |
acceptance | Array of simulation heat capacities |
Definition at line 113 of file metropolis_output.f90.
subroutine, public metropolis_output::energy_trajectory_writer | ( | character(len=*), intent(in) | filename, |
integer | step_number, | ||
real(real64) | energy ) |
Subroutine to write energy of a Metropolis simulation trajectory to a plain text file.
filename | Name of file to which to write |
step_number | Index of current MC trial step |
energy | Simulation energy to write |
Definition at line 34 of file metropolis_output.f90.