[MATLAB-legacy] Remove references to MATLAB

This commit is contained in:
Ingmar Schoegl 2024-02-20 18:48:09 -06:00 committed by Ray Speth
parent 0303dba060
commit 41d7ca6c43
4 changed files with 8 additions and 15 deletions

2
.gitignore vendored
View File

@ -14,8 +14,6 @@ include/cantera/base/config.h
include/cantera/base/config.h.build
include/cantera/base/system.h.gch
include/cantera/ext/
interfaces/matlab/ctpath.m
interfaces/matlab/Contents.m
interfaces/matlab_experimental/Utility/ctRoot.m
src/extensions/delegator.h
stage/

View File

@ -12,8 +12,8 @@ description: |-
to `true`. The preexponential factors and activation energies are converted
from Guo et al., J. Electrochem. Soc. 158, A122 (2011)
A MATLAB example using this file for simulating a discharge curve is
samples/matlab/lithium_ion_battery.m
A Python example using this file for simulating a discharge curve is
samples/python/surface_chemistry/lithium_ion_battery.py
Reference:
M. Mayur, S. C. DeCaluwe, B. L. Kee, W. G. Bessler, “Modeling and simulation

View File

@ -24,16 +24,15 @@ namespace Cantera
//! output stream or standard error stream, but classes may be derived from
//! Logger that implement other output options. This is important when Cantera
//! is used in applications that do not display the standard output, such as
//! MATLAB. The %Cantera MATLAB interface derives a class from Logger that
//! implements these methods with MATLAB-specific procedures, insuring that the
//! Python. The %Cantera Python interface derives a class from Logger that
//! implements these methods with Python-specific procedures, insuring that the
//! messages will be passed through to the user. It would also be possible to
//! derive a class that displayed the messages in a pop-up window, or redirected
//! them to a file, etc.
//!
//! To install a logger, call function setLogger (global.h / misc.cpp).
//!
//! See the files Cantera/python/src/pylogger.h and
//! Cantera/matlab/cantera/private/mllogger.h for examples of
//! See the file Cantera/python/src/pylogger.h for examples of
//! deriving logger classes.
//! @ingroup logGroup
//!

View File

@ -8,13 +8,10 @@
# - Interfaces: LCO/electrolyte and LiC6/electrolyte
# - Charge-transfer reactions at the two interfaces
#
# A MATLAB example using this file for simulating a discharge curve is
# samples/matlab/lithium_ion_battery.m
#
# Reference:
# M. Mayur, S. C. DeCaluwe, B. L. Kee, W. G. Bessler, “Modeling and simulation
# of the thermodynamics of lithium-ion battery intercalation materials in the
# open-source software Cantera,” Electrochim. Acta 323, 134797 (2019),
# M. Mayur, S. C. DeCaluwe, B. L. Kee, W. G. Bessler, “Modeling and simulation
# of the thermodynamics of lithium-ion battery intercalation materials in the
# open-source software Cantera,” Electrochim. Acta 323, 134797 (2019),
# https://doi.org/10.1016/j.electacta.2019.134797
#==============================================================================
@ -292,4 +289,3 @@ edge_reaction("Li+[elyt] + V[anode] + electron <=> Li[anode]", [2.028e4, 0.0, (2
# LCO/electrolyte interface
edge_reaction("Li+[elyt] + V[cathode] + electron <=> Li[cathode]", [5.629e11, 0.0, (58, 'kJ/mol')], rate_coeff_type = "exchangecurrentdensity", beta = 0.5,id="cathode_reaction")