This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
c ***************************************************** | |
c | |
subroutine dljpot(x,y,z,pot,dpotx,dpoty,dpotz,dmax) | |
c | |
c Subroutine to calculate L-J + ion-dipole potential. | |
c | |
implicit double precision (a-h,m-z) | |
parameter (len=1000) | |
common/printswitch/ip,it,iu1,iu2,iu3,iv,im2,im4,igs | |
common/constants/mu,ro,eo,pi,cang,ro2,dipol,emax,m1,m2, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python -tt | |
# My little script for calculating some statistical analyses. | |
import sys | |
import math | |
def conf_int(filename): | |
data_set = '' | |
f = open(sys.argv[1], 'rU') |