Skip to content
Snippets Groups Projects
Commit f6a2ed0b authored by Martin Schönherr's avatar Martin Schönherr :speech_balloon:
Browse files

Merge branch 'refactoringNamespaces' of...

Merge branch 'refactoringNamespaces' of https://git.rz.tu-bs.de/m.schoenherr/VirtualFluids_dev into refactoringNamespaces
parents 06c85e80 77ef5b10
No related branches found
No related tags found
1 merge request!447Refactoring the namespaces
......@@ -69,7 +69,7 @@ void run(const vf::basics::ConfigurationFile& config)
{
// simulation parameters
std::string path("D:/output/LaminarPipeFlow");
std::string path("./output/LaminarPipeFlow");
std::string simulationName("LaminarPipeFlow");
const std::array<real, 3> length = { 128, 64, 64 };
......@@ -209,7 +209,7 @@ int main(int argc, char* argv[])
try {
vf::logging::Logger::initializeLogger();
vf::basics::ConfigurationFile config =
vf::basics::loadConfig(argc, argv, "../../../../apps/gpu/LaminarPipeFlowGPU/laminarpipeflow.cfg");
vf::basics::loadConfig(argc, argv, "./apps/gpu/LaminarPipeFlowGPU/laminarpipeflow.cfg");
run(config);
} catch (const std::exception& e) {
VF_LOG_WARNING("{}", e.what());
......
......@@ -4,5 +4,5 @@
# parameters for comparison to the analytical solution
deltaX = 1.0
timeStepOutput = 1000
timeStepEnd = 10000
timeStepOutput = 100000
timeStepEnd = 500000
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment