Skip to content

Commit

Permalink
Made WIP methods private
Browse files Browse the repository at this point in the history
  • Loading branch information
2AUK committed Mar 30, 2023
1 parent b2c5a74 commit 72dc192
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions pyrism/rism_ctrl.py
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,8 @@ def epilogue(self, dat1, dat2=None):
dat2.h = dat2.t + dat2.c
self.SFED_calc(dat2, vv=dat1)

def isothermal_compressibility(self, dat):
def __isothermal_compressibility(self, dat):
# WIP
ck0 = 0.0
for i in range(dat.grid.npts):
ck0r = 0
Expand Down Expand Up @@ -605,8 +606,8 @@ def isothermal_compressibility(self, dat):
return dat.B / (total_dens - pc_0)
"""

def partial_molar_volume(self):

def __partial_molar_volume(self):
# WIP
# Taken from:
# https://doi.org/10.1021/jp9608786

Expand All @@ -620,7 +621,8 @@ def partial_molar_volume(self):
return self.vv.kT * self.vv.T * X_t * (1 - int_cr)


def virial_pressure(self):
def __virial_pressure(self):
# WIP
duvv = np.zeros_like(self.vv.u)

for i, j in np.ndindex(self.vv.ns1, self.vv.ns2):
Expand Down

0 comments on commit 72dc192

Please sign in to comment.