www.cemf.ir
triangleFunctions.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 __triangleFunctions_hpp__
22 #define __triangleFunctions_hpp__
23 
24 #include "types.hpp"
25 
26 namespace pFlow::triangle
27 {
28 
30 real surface( const realx3& p1, const realx3& p2, const realx3& p3)
31 {
32  realx3 V1 = p2 - p1;
33  realx3 V2 = p3 - p1;
34  return abs((cross(V1,V2)).length()/(real)2.0);
35 }
36 
38 realx3 normal(const realx3& p1, const realx3& p2, const realx3& p3)
39 {
40  auto n = cross(p2-p1, p3-p1);
41  if( equal(n.length(), 0.0) )
42  return realx3(0);
43  else
44  return normalize(n);
45 }
46 
48 bool valid
49 (
50  const realx3& p1,
51  const realx3& p2,
52  const realx3& p3
53 )
54 {
55  return !equal(cross(p2-p1, p3-p1).length(), 0.0);
56 }
57 
58 
59 
60 }
61 
62 #endif
normalize
INLINE_FUNCTION_HD triple< T > normalize(const triple< T > &v1)
pFlow::real
float real
Definition: builtinTypes.hpp:45
types.hpp
pFlow::triangle::valid
INLINE_FUNCTION_HD bool valid(const realx3 &p1, const realx3 &p2, const realx3 &p3)
Definition: triangleFunctions.hpp:49
pFlow::equal
INLINE_FUNCTION_HD bool equal(const box &b1, const box &b2, real tol=smallValue)
Definition: box.hpp:135
pFlow::triangle::normal
INLINE_FUNCTION_HD realx3 normal(const realx3 &p1, const realx3 &p2, const realx3 &p3)
Definition: triangleFunctions.hpp:38
pFlow::realx3
triple< real > realx3
Definition: types.hpp:43
pFlow::triangle
Definition: triangleFunctions.hpp:26
cross
INLINE_FUNCTION_HD triple< T > cross(const triple< T > &v1, const triple< T > &v2)
length
INLINE_FUNCTION_HD T length(const triple< T > &v1)
pFlow::abs
Vector< T, Allocator > abs(const Vector< T, Allocator > &v)
Definition: VectorMath.hpp:84
n
uint32 n
Definition: NBSLoop.hpp:24
INLINE_FUNCTION_HD
#define INLINE_FUNCTION_HD
Definition: pFlowMacros.hpp:55
pFlow::triple< real >
pFlow::triangle::surface
INLINE_FUNCTION_HD real surface(const realx3 &p1, const realx3 &p2, const realx3 &p3)
Definition: triangleFunctions.hpp:30