-
Notifications
You must be signed in to change notification settings - Fork 239
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2235 from norihiro-w/lie-intersects-pr
[L-IE] supporting fracture intersections in mechanics
- Loading branch information
Showing
33 changed files
with
1,665 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/** | ||
* \copyright | ||
* Copyright (c) 2012-2018, OpenGeoSys Community (http://www.opengeosys.org) | ||
* Distributed under a Modified BSD License. | ||
* See accompanying file LICENSE.txt or | ||
* http://www.opengeosys.org/project/license | ||
* | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include <Eigen/Eigen> | ||
|
||
namespace ProcessLib | ||
{ | ||
namespace LIE | ||
{ | ||
struct BranchProperty final | ||
{ | ||
Eigen::Vector3d coords; | ||
// unit vector normal to the master fracture in a direction to the slave | ||
Eigen::Vector3d normal_vector_branch; | ||
int node_id; | ||
int master_fracture_ID; | ||
int slave_fracture_ID; | ||
|
||
EIGEN_MAKE_ALIGNED_OPERATOR_NEW | ||
}; | ||
|
||
} // namespace LIE | ||
} // namespace ProcessLib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/** | ||
* \copyright | ||
* Copyright (c) 2012-2018, OpenGeoSys Community (http://www.opengeosys.org) | ||
* Distributed under a Modified BSD License. | ||
* See accompanying file LICENSE.txt or | ||
* http://www.opengeosys.org/project/license | ||
* | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include <array> | ||
|
||
#include <Eigen/Eigen> | ||
|
||
namespace ProcessLib | ||
{ | ||
namespace LIE | ||
{ | ||
struct JunctionProperty final | ||
{ | ||
Eigen::Vector3d coords; | ||
int junction_id; | ||
int node_id; | ||
std::array<int, 2> fracture_IDs; | ||
|
||
EIGEN_MAKE_ALIGNED_OPERATOR_NEW | ||
}; | ||
|
||
} // namespace LIE | ||
} // namespace ProcessLib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.