Skip to content

Commit

Permalink
Rename computeParabolicApproximation (#73)
Browse files Browse the repository at this point in the history
* new name is computeQuadraticApproximation for consistency
  • Loading branch information
jeanlucf22 authored Dec 5, 2024
1 parent 149925b commit 2b3cb08
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions drivers/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ add_executable(computeKKS3Ph2Sl
${CMAKE_SOURCE_DIR}/drivers/computeKKS3Ph2Sl.cc)
add_executable(computeEqCompBinary2Ph1Sl
${CMAKE_SOURCE_DIR}/drivers/computeEqCompBinary2Ph1Sl.cc)
add_executable(computeParabolicApproximation
${CMAKE_SOURCE_DIR}/drivers/computeParabolicApproximation.cc)
add_executable(computeQuadraticApproximation
${CMAKE_SOURCE_DIR}/drivers/computeQuadraticApproximation.cc)

target_link_libraries(plotEnergyVsComposition thermo4pfm)
target_link_libraries(plotEnergyVsCompositionThreePhase thermo4pfm)
Expand All @@ -49,7 +49,7 @@ target_link_libraries(computeKKSTernary thermo4pfm)
target_link_libraries(computeTieLineTernary thermo4pfm)
target_link_libraries(computeKKS3Ph2Sl thermo4pfm)
target_link_libraries(computeEqCompBinary2Ph1Sl thermo4pfm)
target_link_libraries(computeParabolicApproximation thermo4pfm)
target_link_libraries(computeQuadraticApproximation thermo4pfm)
target_link_libraries(loopxlogx thermo4pfm)
target_link_libraries(loopCALPHADSpeciesPhaseGibbsEnergy thermo4pfm)
target_link_libraries(loopCALPHADConcSolverBinary thermo4pfm)
Expand All @@ -74,7 +74,7 @@ install(TARGETS plotEnergyVsComposition
computeKKSTernary
computeTieLineTernary
computeKKS3Ph2Sl
computeParabolicApproximation
computeQuadraticApproximation
loopxlogx
loopCALPHADSpeciesPhaseGibbsEnergy
loopCALPHADConcSolverBinary
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ int main(int argc, char* argv[])
}

{
std::ofstream os("ParabolicDataLiquid.csv");
std::ofstream os("QuadraticDataLiquid.csv");
os << "T, c0, f(c0), d2f\n";
for (int iT = 0; iT < nT; iT++)
{
Expand All @@ -141,7 +141,7 @@ int main(int argc, char* argv[])
}
}
{
std::ofstream os("ParabolicDataSolid.csv");
std::ofstream os("QuadraticDataSolid.csv");
os << "T, c0, f(c0), d2f\n";
for (int iT = 0; iT < nT; iT++)
{
Expand Down

0 comments on commit 2b3cb08

Please sign in to comment.