Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120421783
main.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Jul 4, 06:38
Size
1 KB
Mime Type
text/x-c
Expires
Sun, Jul 6, 06:38 (2 d)
Engine
blob
Format
Raw Data
Handle
27186362
Attached To
R3721 ConSol
main.cpp
View Options
//
// main.cpp
// ConSol
//
// Created by Fabian Moenkeberg on 15.05.17.
// Copyright © 2017 EPFL. All rights reserved.
//
#include <iostream>
#include "Example/burgersNoReconstr.hpp"
#include "Example/EulerSod.hpp"
#include "Example/EulerWCBlast.hpp"
#include "Example/EulerLaxShockTube.hpp"
#include "Example/EulerLaxShockTube2.hpp"
#include <Example/burgersReconstr.hpp>
#include "Example/buckleyLeverettReconstr.hpp"
#include "Example/linearAdvectionReconstr.hpp"
#include <numeric>
using namespace std;
int main(int argc, const char * argv[]) {
std::cout << "=================================================================================\n";
std::cout << " Starting ConSol solver on triangular mesh\n";
std::cout << " --- Author: Fabian Moenkeberg \n";
std::cout << " --- Date : 18 June , 2018 \n";
std::cout << "=================================================================================\n";
Solution soln = burgersReconstr();
std::cout << "\n\n---------------Solver has finished!!----------------------\n";
return 0;
}
Event Timeline
Log In to Comment