summaryrefslogtreecommitdiff
path: root/c++/lbm.hpp
blob: ddfa94876c26dbffbe7e4203db28da6a794a7d0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#pragma once

#include "descriptor.hpp"
#include "converter.hpp"

#include <forstio/codec/unit/unit_print.hpp>
#include <iostream>

namespace kel {
namespace lbm {
template<typename T>
void print_lbm_meta(const converter<T>& conv){
	std::cout
		<<"[LBM Meta]\n"
		<<"==========\n"
		<<"\n"
		<<"Δx: "<<conv.delta_x()<<"\n"
		<<"Δt: "<<conv.delta_t()<<"\n"
		<<""
	;
}
}
}