Skip to content
Snippets Groups Projects
Commit 25a29059 authored by Jan Habscheid's avatar Jan Habscheid
Browse files

added first line with explanation for each file

parent 7a1f71fc
No related branches found
No related tags found
No related merge requests found
Showing
with 25 additions and 1 deletion
'''
Jan Habscheid
Jan.Habscheid@rwth-aachen.de
This script is used to analyze the compressibility of a ternary electrolyte.
'''
# import the src file needed to solve the system of equations
......
'''
Jan Habscheid
Jan.Habscheid@rwth-aachen.de
This script is used to compare the convergence of the DGM model
'''
# import the src file needed to solve the system of equations
......
'''
Jan Habscheid
Jan.Habscheid@rwth-aachen.de
This script is used to analyze the influence of the compressibility on the charge of the system and the double-layer capacity.
'''
# import the src file needed to solve the system of equations
......
'''
Jan Habscheid
Jan.Habscheid@rwth-aachen.de
This script is used to analyze the influence of the dimensionless parameter λ on the charge of the system and the double-layer capacity.
'''
# import the src file needed to solve the system of equations
......
'''
Jan Habscheid
Jan.Habscheid@rwth-aachen.de
This script is used to analyze the influence of the molarity on the charge of the system and the double-layer capacity.
'''
# import the src file needed to solve the system of equations
......
'''
Jan Habscheid
Jan.Habscheid@rwth-aachen.de
This script is used to analyze the influence of the solvation on the charge of the system and the double-layer capacity.
'''
# import the src file needed to solve the system of equations
......
'''
Jan Habscheid
Jan.Habscheid@rwth-aachen.de
This script is used to validate the analytical method for the calculation of the double layer capacity.
'''
# import the src file needed to solve the system of equations
......@@ -8,7 +10,7 @@ import sys
import os
# Add the src directory to the sys.path
src_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), '../..', 'src')
src_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), '../../../', 'src')
sys.path.insert(0, src_path)
from Eq02 import solve_System_2eq
......@@ -90,6 +92,7 @@ Q_ana = Q_DL_dimless_ana(y_R, y_R, 1-2*y_R, z_A, z_C, phi_left, phi_right, p_rig
C_DL_ana = C_dl(Q_ana, phi_left)
# Plotting
plt.figure()
plt.plot(phi_left, Q_num - Q_ana, label='Difference')
plt.grid()
......
'''
Jan Habscheid
Jan.Habscheid@rwth-aachen.de
This script is used to calculate the simplified one-dimensional equilibrium problem with a changed setting.
For more information see the corresponding thesis.
'''
import numpy as np
......
'''
Jan Habscheid
Jan.Habscheid@rwth-aachen.de
This script is used to compare the thermodynamically consistent model, proposed by Dreyer, Guhlke and Müller, against the classical Nernst-Plank model with the Poisson-Boltzmann formulation.
'''
# import the src file needed to solve the system of equations
......
'''
Jan Habscheid
Jan.Habscheid@rwth-aachen.de
This script is used to analyze the solvation effect of an incomressible, ternary electrolyte.
'''
# import the src file needed to solve the system of equations
......
'''
Jan Habscheid
Jan.Habscheid@rwth-aachen.de
This script is used to calculate some first results for the incompressible, ternary electrolyte.
'''
# import the src file needed to solve the system of equations
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment