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

#include "../geometry.hpp"

namespace kel {
namespace lbm {
namespace cmpt {
struct PoiseulleChannel;
}

template<typename Schema, typename Desc, typename Encode>
class component<Schema, Desc, cmpt::PoiseulleChannel, Encode> final {
private:
public:
	template<typename CellFieldSchema>
	void apply(saw::data<CellFieldSchema,Encode>& field, const saw::data<sch::FixedArraysch::UInt64,Desc::D>){
		auto& info_f = field.template get<"info">();
	}
};

}
}