-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Thm segregate #3
Open
shyaan
wants to merge
57
commits into
develop
Choose a base branch
from
thm_segregate
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
57 commits
Select commit
Hold shift + click to select a range
7ef2468
:construction: THM code
kks32 7d438ac
successful compiling
shyaan af2067b
:hammer: Fix run function in Geothermal and refactor typo in Geotherm…
kks32 6f53037
:hammer: :dart: Fix CircleCI compile with Dealii path
kks32 4d7a203
add setp-dof
shyaan aed4424
derivation
shyaan ea67808
add some new lines
shyaan 531d086
Merge branch 'thm' of https://github.com/cb-geo/thm into thm
shyaan 3306755
setup_dofs
shyaan 8953baf
simlified
shyaan 2a9edd1
add vscode
shyaan 37378b8
add data collection
shyaan 26973de
add new namespace
shyaan 321774d
add new namespace
shyaan 1ecc328
reorganaizing
shyaan 4268735
change boundary
shyaan fdd4287
segregate
shyaan 4de1472
revise
shyaan 4da1d64
major reivise
shyaan 051dd0a
bracket
shyaan c96b8db
ajust the form
shyaan 6aff33b
ADD INITIAL CONDITION
shyaan 04ebbf3
build
shyaan 9b477c3
add quadratrue_points
shyaan 34b5048
after debug
shyaan 948ff88
:dart: Use THM container for CircleCI
kks32 7bded89
:pencil: :art: Fix formatting
kks32 5e7f419
:fire: Remove codecoverage in CI
kks32 de08307
Place the system matrix assembing outside
shyaan d103f92
ADD TIMER
shyaan e1a325e
:clock: Refactor timer class
kks32 a8213eb
:art: Fix formatting
kks32 2cbe6a2
add convection term and parameter with physical meaning
shyaan b20437c
Merge branch 'thm_segregate' of https://github.com/cb-geo/thm into th…
shyaan 3c8b1c0
debug the rhs problem
shyaan baead91
add test
shyaan e685379
add GMRES and coupling effects
shyaan 43a9c17
typo checking
shyaan 3e9d699
add gravity and more boundary
shyaan 3306a3e
input parameter from txt file
shyaan 5bebcb3
inport parameter from parameter.txt
shyaan eb4af06
add get_parameter fucntion to get pamameter from txt file
shyaan 6b8470a
change txt to csv
shyaan f545078
add distribution
shyaan 3164158
:wrench: Fix CPP check error in boundary values
kks32 34dbe9a
:wrench: Fix CPP check error in boundary values temp boundary
kks32 fc43fb5
:pencil: :art: Fix clang-format errors
kks32 230bedd
:wrench: Fix missing csv in external
kks32 9e63672
change the parameters
shyaan 96b4cb1
Merge branch 'thm_segregate' of https://github.com/cb-geo/thm into th…
shyaan a6e2ea1
amend all names of variables
shyaan cdca305
amend the format and add solver settins to input file
shyaan cd51db7
setup a benchmark case
shyaan 1300f3c
adjust format
shyaan 57f1df9
amend the constructor
shyaan 7d5d18e
adjust format
shyaan dea94b7
remove idle sys matrix
shyaan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
--- | ||
# BasedOnStyle: CUED GeoMechanics | ||
AccessModifierOffset: -1 | ||
ConstructorInitializerIndentWidth: 4 | ||
AlignEscapedNewlinesLeft: true | ||
AlignTrailingComments: true | ||
AllowAllParametersOfDeclarationOnNextLine: true | ||
AllowShortIfStatementsOnASingleLine: true | ||
AllowShortLoopsOnASingleLine: true | ||
AlwaysBreakTemplateDeclarations: true | ||
AlwaysBreakBeforeMultilineStrings: true | ||
BreakBeforeBinaryOperators: false | ||
BreakBeforeTernaryOperators: true | ||
BreakConstructorInitializersBeforeComma: false | ||
BinPackParameters: true | ||
ColumnLimit: 80 | ||
ConstructorInitializerAllOnOneLineOrOnePerLine: true | ||
DerivePointerBinding: false | ||
ExperimentalAutoDetectBinPacking: false | ||
IndentCaseLabels: true | ||
MaxEmptyLinesToKeep: 1 | ||
NamespaceIndentation: None | ||
ObjCSpaceBeforeProtocolList: false | ||
PenaltyBreakBeforeFirstCallParameter: 1 | ||
PenaltyBreakComment: 60 | ||
PenaltyBreakString: 1000 | ||
PenaltyBreakFirstLessLess: 120 | ||
PenaltyExcessCharacter: 1000000 | ||
PenaltyReturnTypeOnItsOwnLine: 200 | ||
PointerBindsToType: true | ||
SpacesBeforeTrailingComments: 2 | ||
Cpp11BracedListStyle: true | ||
Standard: Auto | ||
IndentWidth: 2 | ||
TabWidth: 8 | ||
UseTab: Never | ||
BreakBeforeBraces: Attach | ||
IndentFunctionDeclarationAfterType: true | ||
SpacesInParentheses: false | ||
SpacesInAngles: false | ||
SpaceInEmptyParentheses: false | ||
SpacesInCStyleCastParentheses: false | ||
SpaceAfterControlStatementKeyword: true | ||
SpaceBeforeAssignmentOperators: true | ||
ContinuationIndentWidth: 4 | ||
... | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/bash | ||
find ../include/ -iname *.h -o -iname *.tcc | xargs clang-format -i | ||
find ../src/ -iname *.h -o -iname *.cc | xargs clang-format -i | ||
find ../tests/ -iname *.h -o -iname *.cc | xargs clang-format -i | ||
#find ../tests/ -iname *.h -o -iname *.cc | xargs clang-format -i |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You don't need this, please pass
-DCMAKE_BUILD_TYPE=Debug
when compilingThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
make "DCMAKE_BUILD_TYPE=Debug" ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cmake -DCMAKE_BUILD_TYPE=Debug