uniformRandomInt32.hpp
Go to the documentation of this file.
1 /*------------------------------- phasicFlow ---------------------------------
2  O C enter of
3  O O E ngineering and
4  O O M ultiscale modeling of
5  OOOOOOO F luid flow
6 ------------------------------------------------------------------------------
7  Copyright (C): www.cemf.ir
8  email: hamid.r.norouzi AT gmail.com
9 ------------------------------------------------------------------------------
10 Licence:
11  This file is part of phasicFlow code. It is a free software for simulating
12  granular and multiphase flows. You can redistribute it and/or modify it under
13  the terms of GNU General Public License v3 or any other later versions.
14 
15  phasicFlow is distributed to help others in their research in the field of
16  granular and multiphase flows, but WITHOUT ANY WARRANTY; without even the
17  implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 
19 -----------------------------------------------------------------------------*/
20 
21 #ifndef __uniformRandomInt32_hpp__
22 #define __uniformRandomInt32_hpp__
23 
24 #include <random>
25 
26 #include "types.hpp"
27 #include "typeInfo.hpp"
28 
29 namespace pFlow
30 {
31 
33 {
34 protected:
35 
36  std::mt19937_64 engineGen_;
37 
38  std::uniform_int_distribution<int32> distrbution_;
39 
40 public:
41 
42  // type info
43  TypeInfoNV("uniform");
44 
46  :
47  engineGen_(std::random_device()()),
49  {}
50 
51  ~uniformRandomInt32()= default;
52 
53  inline real randomNumber()
54  {
55  return distrbution_(engineGen_);
56  }
57 
59  {
60  return int32x3
61  (
62  randomNumber(),
63  randomNumber(),
64  randomNumber()
65  );
66  }
67 
68  inline realx3 operator()()
69  {
70  return randomNumber();
71  }
72 
73 
74 
75 };
76 
77 }
78 
79 #endif
pFlow::real
float real
Definition: builtinTypes.hpp:46
types.hpp
pFlow::int32x3
triple< int32 > int32x3
Definition: types.hpp:41
pFlow::uniformRandomInt32::~uniformRandomInt32
~uniformRandomInt32()=default
pFlow::uniformRandomInt32::TypeInfoNV
TypeInfoNV("uniform")
pFlow
Definition: demComponent.hpp:28
pFlow::uniformRandomInt32::uniformRandomInt32
uniformRandomInt32(int32 min, int32 max)
Definition: uniformRandomInt32.hpp:45
pFlow::uniformRandomInt32::randomNumber
real randomNumber()
Definition: uniformRandomInt32.hpp:53
pFlow::uniformRandomInt32
Definition: uniformRandomInt32.hpp:32
pFlow::uniformRandomInt32::engineGen_
std::mt19937_64 engineGen_
Definition: uniformRandomInt32.hpp:36
pFlow::int32
int int32
Definition: builtinTypes.hpp:53
pFlow::max
T max(const Vector< T, Allocator > &v)
Definition: VectorMath.hpp:164
typeInfo.hpp
pFlow::uniformRandomInt32::randomNumber3
int32x3 randomNumber3()
Definition: uniformRandomInt32.hpp:58
pFlow::uniformRandomInt32::operator()
realx3 operator()()
Definition: uniformRandomInt32.hpp:68
pFlow::triple< int32 >
pFlow::uniformRandomInt32::distrbution_
std::uniform_int_distribution< int32 > distrbution_
Definition: uniformRandomInt32.hpp:38
pFlow::min
T min(const Vector< T, Allocator > &v)
Definition: VectorMath.hpp:138