www.cemf.ir
uniformRandomUint32.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 __uniformRandomUint32_hpp__
22 #define __uniformRandomUint32_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<uint32> distrbution_;
39 
40 public:
41 
42  // type info
43  TypeInfoNV("uniform");
44 
46  :
47  engineGen_(std::random_device()()),
49  {}
50 
51  ~uniformRandomUint32()= default;
52 
53  inline uint32 randomNumber()
54  {
55  return distrbution_(engineGen_);
56  }
57 
59  {
60  return triple<uint32>
61  (
62  randomNumber(),
63  randomNumber(),
64  randomNumber()
65  );
66  }
67 
69  {
70  return randomNumber3();
71  }
72 
73 
74 
75 };
76 
77 }
78 
79 #endif
pFlow::uniformRandomUint32::distrbution_
std::uniform_int_distribution< uint32 > distrbution_
Definition: uniformRandomUint32.hpp:38
types.hpp
pFlow::uint32
unsigned int uint32
Definition: builtinTypes.hpp:56
pFlow::uniformRandomUint32::randomNumber
uint32 randomNumber()
Definition: uniformRandomUint32.hpp:53
pFlow::max
T max(const internalField< T, MemorySpace > &iField)
Definition: internalFieldAlgorithms.hpp:79
pFlow::uniformRandomUint32::randomNumber3
triple< uint32 > randomNumber3()
Definition: uniformRandomUint32.hpp:58
pFlow
Definition: demGeometry.hpp:27
pFlow::uniformRandomUint32
Definition: uniformRandomUint32.hpp:32
pFlow::uniformRandomUint32::uniformRandomUint32
uniformRandomUint32(uint32 min, uint32 max)
Definition: uniformRandomUint32.hpp:45
pFlow::min
T min(const internalField< T, MemorySpace > &iField)
Definition: internalFieldAlgorithms.hpp:28
pFlow::uniformRandomUint32::engineGen_
std::mt19937_64 engineGen_
Definition: uniformRandomUint32.hpp:36
pFlow::uniformRandomUint32::TypeInfoNV
TypeInfoNV("uniform")
pFlow::uniformRandomUint32::~uniformRandomUint32
~uniformRandomUint32()=default
typeInfo.hpp
pFlow::triple
A set of 3 variables that can be used for vector variables.
Definition: triple.hpp:36
pFlow::uniformRandomUint32::operator()
triple< uint32 > operator()()
Definition: uniformRandomUint32.hpp:68