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

Some updates for RAVEN 3.0 Release #2234

Merged
merged 5 commits into from
Jan 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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