Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinAchondo committed Jul 2, 2024
1 parent 2a3c74d commit 793b271
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xppbe/Model/PDE_Model.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def get_phi_interface(self,X,model,**kwargs):
u_mean = self.get_phi(X,'interface',model,**kwargs)
u_1 = self.get_phi(X,'molecule',model,**kwargs)
u_2 = self.get_phi(X,'solvent',model,**kwargs)
return u_mean[:,0],u[:,0],u[:,0]
return u_mean[:,0],u_1[:,0],u_2[:,0]

def get_dphi_interface(self,X,N_v,model,value='phi'):
du_1,du_2 = self.get_dphi(X,N_v,'',model,value)
Expand Down

0 comments on commit 793b271

Please sign in to comment.