Skip to content

Instantly share code, notes, and snippets.

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,
@scholzy
scholzy / stats.py
Created December 18, 2013 12:31
a quick python script for basic experimental statistical analysis.
#!/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')