Skip to content

Commit

Permalink
Some updates for RAVEN 3.0 Release (#2234)
Browse files Browse the repository at this point in the history
* update manual

* update warning message

* update gitignore
  • Loading branch information
wangcj05 authored Jan 24, 2024
1 parent 7d684d3 commit bfb53aa
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 7 deletions.
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
*.ravenStatus
*.so
*~
*.inp
*.fls
*.fdb_latexmk
build_out*
build/
install/
Expand Down Expand Up @@ -55,6 +58,15 @@ dist/
tests/framework/.coverage
tests/framework/htmlcov/

# test
tests/framework/CodeInterfaceTests/PARCS/PARCS-RAVEN-GA/sampleGA-PARCS/
tests/framework/CodeInterfaceTests/Scale/SCALE_csas/sampleScale/
tests/framework/CodeInterfaceTests/Simulate/Simulate_RAVEN-GA/sampleGA-Simulate/
tests/framework/ROM/TimeSeries/ARMA/InterpolatedMaxCycles/
tests/framework/ROM/TimeSeries/SyntheticHistory/LogARMA/
tests/framework/ROM/TimeSeries/SyntheticHistory/VARMA/
tests/framework/ROM/TimeSeries/SyntheticHistory/ZeroFilterDiscontinuous/

# hpc
node_*[0-9]
*.[oe][0-9][0-9][0-9][0-9][0-9]
Expand Down
18 changes: 12 additions & 6 deletions doc/user_manual/raven_user_manual.tex
Original file line number Diff line number Diff line change
Expand Up @@ -272,22 +272,28 @@
\\Paul W. Talbot
\\Mohammad G. Abdo
\\Dylan J. McDowell
\\Ramon K. Yoshiura\\
\\Ramon K. Yoshiura
\\Junyung Kim\\
\textbf{\textit{Former Developers:}}
\\Cristian Rabiti
\\Daniel P. Maljovec
\\Sonat Sen
\\Robert Kinoshita
\\Jun Chen\\
\\Jun Chen
\\Jia Zhou
\\Daniel Garrett\\
\textbf{\textit{Contributors:}}
\\Alessandro Bandini (Post-Processor)
\\Ivan Rinaldi (documentation)
\\Claudia Picoco (new external code interface)
\\James B. Tompkins (new external code interface)
\\Matteo Donorio (new external code interface)
\\Fabio Giannetti (new external code interface)
\\Jia Zhou (conjugate gradient optimizer)
\\Junyung Kim (Genetic Algorithm)
\\Alp Tezbasaran (new external code interface)
\\Anthoney A. Griffith (Bayesian optimization)
\\Jacob A. Bryan (TSA module)
\\Haoyu Wang (DMD amd DMDc)
\\Khang Nguyen (new external code interface)
}

% There is a "Printed" date on the title page of a SAND report, so
Expand All @@ -301,8 +307,8 @@
\SANDnum{INL/EXT-15-34123}
\SANDprintDate{\today}
\SANDauthor{Cristian Rabiti, Andrea Alfonsi, Joshua Cogliati, Diego Mandelli, Congjian Wang, Paul W. Talbot,
Mohammad G. Abdo, Dylan J. McDowell, Ramon K. Yoshiura, Robert Kinoshita, Sonat Sen, Daniel P. Maljovec}
\SANDreleaseType{Revision 8}
Mohammad G. Abdo, Dylan J. McDowell, Ramon K. Yoshiura, Robert Kinoshita, Sonat Sen, Daniel P. Maljovec, Jun Chen, Jia Zhou, Junyung Kim}
\SANDreleaseType{Revision 9}

% ---------------------------------------------------------------------------- %
% Include the markings required for your SAND report. The default is "Unlimited
Expand Down
2 changes: 1 addition & 1 deletion ravenframework/Models/ExternalModel.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def localInputAndChecks(self,xmlNode):
# check if there are variables and, in case, load them
for child in paramInput.subparts:
if child.getName() == 'variables':
self.raiseAWarning(DeprecationWarning ,'"variables" node inputted but has been deprecated! Please list variables in the "inputs" and "outputs" nodes instead. This Warning will result in an error in RAVEN 3.0!')
self.raiseAWarning(DeprecationWarning ,'"variables" node inputted but has been deprecated! Please list variables in the "inputs" and "outputs" nodes instead.')
self.modelVariableType = dict.fromkeys(child.value)
elif child.getName() == 'inputs':
self._setVariableList('input', child.value)
Expand Down

0 comments on commit bfb53aa

Please sign in to comment.