Skip to content
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

Baseline Correction #319

Closed
wants to merge 8 commits into from
2 changes: 2 additions & 0 deletions doc/acronyms.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
IVP: initial value problem
BLC: baseline correction
4 changes: 3 additions & 1 deletion doc/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ Extensions:
shortcuts: !include ${MOOSE_DIR}/framework/doc/globals.yml

MooseDocs.extensions.acronym:
acronyms: !include ${MOOSE_DIR}/framework/doc/acronyms.yml
acronyms:
framework: !include ${MOOSE_DIR}/framework/doc/acronyms.yml
mastodon: !include doc/acronyms.yml

MooseDocs.extensions.template:
active: True
Expand Down
27 changes: 22 additions & 5 deletions doc/content/bib/mastodon.bib
Original file line number Diff line number Diff line change
Expand Up @@ -615,8 +615,25 @@ @article{veeraraghavan2017embedded
journal = {Transactions, 24th International Conference on Structural Mechanics in Reactor Technology (SMiRT 24), Busan, South Korea, August 2017},
year = {2017}}

@article{veeraraghavan2019nlssi,
author = {S.~Veeraraghavan and J.~Coleman},
title = {Effect of non-vertically propagating earthquake waves and nonlinear soil-structure interaction on nuclear facility response},
journal = {Transactions, 25th International Conference on Structural Mechanics in Reactor Technology (SMiRT 25), Charlotte, North Carolina, August 2019},
year = {2019}}
@article{veeraraghavan2019nlssi,
author = {S.~Veeraraghavan and J.~Coleman},
title = {Effect of non-vertically propagating earthquake waves and nonlinear soil-structure interaction on nuclear facility response},
journal = {Transactions, 25th International Conference on Structural Mechanics in Reactor Technology (SMiRT 25), Charlotte, North Carolina, August 2019},
year = {2019}}

@article{brady1966,
author = {A.~G.~Brady},
title = {Studies of Response to Earthquake Ground Motion},
journal = {In Partial Fulfillment of the Requirements for the Degree of Doctor of Philosophy, California Institute of Technology, Pasadena, CA},
year = {1966}
}

@article{pan2016,
author = {C.~Pan and R.~Zhang and H.~Luo and H.~Shen},
title = {Baseline Correction of Vibration Acceleration Signals with Inconsistent Initial Velocity and Displacement},
journal = {Advances in Mechanical Engineering},
volume = {8},
number = {10},
pages = {1-11},
year = {2016}
}
6 changes: 6 additions & 0 deletions doc/content/examples/example11.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<!--placeholder page for BaselineCorrection examples, do not link this to examples index-->
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you please list this example in the index.md file as well?


# Example 11: Baseline Correction Example Set

!alert construction
A comprehensive set of examples that will demonstrate use of [source/functions/BaselineCorrection.md] will become available here soon. Please see [Issue `#344`](https://github.com/idaholab/mastodon/issues/344) for more information and updates.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
185 changes: 185 additions & 0 deletions doc/content/source/functions/BaselineCorrection.md

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions doc/content/source/functions/baselinecorrection_data/demo_1.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
time,acceleration
0.0,0.0000
0.1,3.0499
0.2,5.8012
0.3,7.9847
0.4,9.3866
0.5,9.8696
0.6,9.3866
0.7,7.9847
0.8,5.8012
0.9,3.0499
1.0,0.0000
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
time,displacement
0.0,0.0000
0.1,-0.0235
0.2,-0.0796
0.3,-0.1414
0.4,-0.1877
0.5,-0.2047
0.6,-0.1877
0.7,-0.1414
0.8,-0.0796
0.9,-0.0235
1.0,0.0000
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
time,displacement
0.0,0.0000
0.1,0.1525
0.2,0.5950
0.3,1.2843
0.4,2.1529
0.5,3.1157
0.6,4.0785
0.7,4.9471
0.8,5.6364
0.9,6.0789
1.0,6.2314
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
time,displacement
0.0,0.0000
0.1,-0.1150
0.2,-0.3891
0.3,-0.6911
0.4,-0.9170
0.5,-1.0000
0.6,-0.9170
0.7,-0.6911
0.8,-0.3891
0.9,-0.1150
1.0,0.0000
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
time,displacement
0.0,0.0000
0.1,-0.0368
0.2,-0.1279
0.3,-0.2373
0.4,-0.3341
0.5,-0.3955
0.6,-0.4073
0.7,-0.3650
0.8,-0.2728
0.9,-0.1427
1.0,0.0078
1.1,0.1583
1.2,0.2884
1.3,0.3806
1.4,0.4229
1.5,0.4111
1.6,0.3497
1.7,0.2528
1.8,0.1435
1.9,0.0524
2.0,0.0156
Loading