Skip to content

Commit

Permalink
Fix blank lines
Browse files Browse the repository at this point in the history
  • Loading branch information
jbreue16 committed Dec 9, 2024
1 parent a833ff7 commit d92db32
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/libcadet/api/CAPIv1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -929,6 +929,7 @@ namespace v1

if (data)
*data = unitRec->primaryCoordinates();

return cdtOK;
}

Expand All @@ -949,6 +950,7 @@ namespace v1
*nCoords = unitRec->numRadialCells();
if (data)
*data = unitRec->secondaryCoordinates();

return cdtOK;
}

Expand Down Expand Up @@ -1002,6 +1004,7 @@ namespace v1
*nTime = sysRec->numDataPoints();
if (time)
*time = sysRec->time();

return cdtOK;
}

Expand Down
1 change: 0 additions & 1 deletion src/libcadet/model/StirredTankModel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,6 @@ bool CSTRModel::configure(IParameterProvider& paramProvider)

if (epsilon > 0.0) // else, constant solid volume is already set to zero
_constSolidVolume = init_liquid_volume * (1.0 - epsilon) / epsilon; // V_s = (V_l + V_s) * (1 - epsilon) -> V_s = V_l * (1 - \epsilon) / \epsilon

}
_parameters[makeParamId(hashString("CONST_SOLID_VOLUME"), _unitOpIdx, CompIndep, ParTypeIndep, BoundStateIndep, ReactionIndep, SectionIndep)] = &_constSolidVolume;

Expand Down

0 comments on commit d92db32

Please sign in to comment.