Skip to content

Commit

Permalink
Formatting for release
Browse files Browse the repository at this point in the history
  • Loading branch information
danmohad committed Sep 4, 2021
1 parent a5ae46b commit 2851c84
Show file tree
Hide file tree
Showing 11 changed files with 50 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# This file is part of the 1D-HSI solver hosted at github.com/IhmeGroup/sprayHSI
# D. Mohaddes
# September 2021

cmake_minimum_required(VERSION 3.9)
project(Hiemenz_solver)

Expand Down
6 changes: 5 additions & 1 deletion Liquid/FitLiquid.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// This file is part of the 1D-HSI solver hosted at github.com/IhmeGroup/sprayHSI
// D. Mohaddes
// September 2021

//
// Created by Danyal Mohaddes on 2/1/21.
//
Expand Down Expand Up @@ -154,4 +158,4 @@ double FitLiquid::D_satvap(double T, double p) const {

FitLiquid::~FitLiquid(){
std::cout << "FitLiquid::~FitLiquid()" << std::endl;
}
}
4 changes: 4 additions & 0 deletions Liquid/FitLiquid.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// This file is part of the 1D-HSI solver hosted at github.com/IhmeGroup/sprayHSI
// D. Mohaddes
// September 2021

//
// Created by Danyal Mohaddes on 2/1/21.
//
Expand Down
4 changes: 4 additions & 0 deletions Liquid/Liquid.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// This file is part of the 1D-HSI solver hosted at github.com/IhmeGroup/sprayHSI
// D. Mohaddes
// September 2021

//
// Created by Danyal Mohaddes on 1/28/21.
//
Expand Down
4 changes: 4 additions & 0 deletions Meshing.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// This file is part of the 1D-HSI solver hosted at github.com/IhmeGroup/sprayHSI
// D. Mohaddes
// September 2021

//
// Created by Danyal Mohaddes on 10/20/20.
//
Expand Down
6 changes: 5 additions & 1 deletion RHSFunctor.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// This file is part of the 1D-HSI solver hosted at github.com/IhmeGroup/sprayHSI
// D. Mohaddes
// September 2021

//
// Created by Danyal Mohaddes on 9/9/20.
//
Expand All @@ -21,4 +25,4 @@ int RHSFunctor::rhs(double t, double *ydata, double *ydotdata) {
return -1; // unrecoverable error
}
return 0;
}
}
4 changes: 4 additions & 0 deletions RHSFunctor.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// This file is part of the 1D-HSI solver hosted at github.com/IhmeGroup/sprayHSI
// D. Mohaddes
// September 2021

//
// Created by Danyal Mohaddes on 9/9/20.
//
Expand Down
6 changes: 5 additions & 1 deletion Solver.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// This file is part of the 1D-HSI solver hosted at github.com/IhmeGroup/sprayHSI
// D. Mohaddes
// September 2021

//
// Created by Danyal Mohaddes on 2020-02-28.
//
Expand Down Expand Up @@ -1647,4 +1651,4 @@ Solver::~Solver() {
N_VDestroy_Serial(cvode_y);
CVodeFree(&cvode_mem);
}
}
}
6 changes: 5 additions & 1 deletion Solver.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// This file is part of the 1D-HSI solver hosted at github.com/IhmeGroup/sprayHSI
// D. Mohaddes
// September 2021

//
// Created by Danyal Mohaddes on 2020-02-28.
//
Expand Down Expand Up @@ -270,4 +274,4 @@ class Solver {
};


#endif //HIEMENZ_SOLVER_SOLVER_H
#endif //HIEMENZ_SOLVER_SOLVER_H
6 changes: 5 additions & 1 deletion SolverPhysics.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// This file is part of the 1D-HSI solver hosted at github.com/IhmeGroup/sprayHSI
// D. Mohaddes
// September 2021

//
// Created by Danyal Mohaddes on 2/4/21.
//
Expand Down Expand Up @@ -541,4 +545,4 @@ void Solver::SetSprayRHS(){

mdot_liq(i) = mdot_liq_;
}
}
}
6 changes: 5 additions & 1 deletion main.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// This file is part of the 1D-HSI solver hosted at github.com/IhmeGroup/sprayHSI
// D. Mohaddes
// September 2021

#include <iostream>
#include "Solver.h"
#include <chrono>
Expand Down Expand Up @@ -48,4 +52,4 @@ int main(int argc, char* argv[]) {

// Done.
return 0;
}
}

0 comments on commit 2851c84

Please sign in to comment.