Skip to content

Commit

Permalink
fixed spelling in parameter name
Browse files Browse the repository at this point in the history
  • Loading branch information
xavierr committed Sep 27, 2024
1 parent fb22d7e commit 680d865
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Electrochemistry/BolayInterface.m
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
SEIionicConductivity
SEIelectronicDiffusionCoefficient
SEIintersticialConcentration
SEIstochiometricCoeffcient
SEIstoichiometricCoefficient
SEIlengthInitial

SEIlengthRef
Expand All @@ -24,7 +24,7 @@
'SEIionicConductivity' , ...
'SEIelectronicDiffusionCoefficient', ...
'SEIintersticialConcentration' , ...
'SEIstochiometricCoeffcient' , ...
'SEIstoichiometricCoefficient' , ...
'SEIlengthInitial'};

model = dispatchParams(model, inputparams, fdnames);
Expand Down Expand Up @@ -98,7 +98,7 @@
function state = updateSEIconcentration(model, state)

vsa = model.volumetricSurfaceArea;
scoef = model.SEIstochiometricCoeffcient;
scoef = model.SEIstoichiometricCoefficient;
seimvol = model.SEImolarVolume;

l = state.SEIlength;
Expand Down Expand Up @@ -141,7 +141,7 @@

function state = updateSEImassCons(model, state, state0, dt)

s = model.SEIstochiometricCoeffcient;
s = model.SEIstoichiometricCoefficient;
V = model.SEImolarVolume;

L0 = state0.SEIlength;
Expand Down
2 changes: 1 addition & 1 deletion Electrochemistry/BolayInterfaceInputParams.m
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

SEImolarVolume
SEIionicConductivity
SEIstochiometricCoeffcient
SEIstoichiometricCoefficient
SEIelectronicDiffusionCoefficient
SEIintersticialConcentration
SEIlengthInitial
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"SEImolarVolume" : 95.86e-6,
"SEIionicConductivity" : 1e-5,
"SEIelectronicDiffusionCoefficient" : 1.6e-12,
"SEIstochiometricCoeffcient" : 2,
"SEIstoichiometricCoefficient" : 2,
"SEIintersticialConcentration" : 1.5e-2,
"SEIlengthInitial" : 10e-9},
"SEImodel" : "Bolay"}

0 comments on commit 680d865

Please sign in to comment.