Skip to content

Commit

Permalink
P91ROM, with necessary changes to the base class, and pipe segment in…
Browse files Browse the repository at this point in the history
…put file
  • Loading branch information
sapitts authored and dschwen committed Sep 30, 2020
1 parent 464de35 commit 1445502
Show file tree
Hide file tree
Showing 3 changed files with 5,679 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
/****************************************************************/
/* DO NOT MODIFY THIS HEADER */
/* BlackBear */
/* */
/* (c) 2017 Battelle Energy Alliance, LLC */
/* ALL RIGHTS RESERVED */
/* */
/* Prepared by Battelle Energy Alliance, LLC */
/* Under Contract No. DE-AC07-05ID14517 */
/* With the U. S. Department of Energy */
/* */
/* See COPYRIGHT for full restrictions */
/****************************************************************/

#pragma once

#include "ADLAROMANCEStressUpdateBase.h"

class P91LAROMANCEStressUpdate : public ADLAROMANCEStressUpdateBase
{
public:
static InputParameters validParams();

P91LAROMANCEStressUpdate(const InputParameters & parameters);

protected:
virtual std::vector<std::vector<std::vector<ROMInputTransform>>> getTransform() override;
virtual std::vector<std::vector<std::vector<Real>>> getTransformCoefs() override;
virtual std::vector<std::vector<std::vector<Real>>> getNormalizationLimits() override;
virtual std::vector<std::vector<std::vector<Real>>> getInputLimits() override;
virtual std::vector<std::vector<std::vector<Real>>> getCoefs() override;
virtual std::vector<unsigned int> getTilings() override;
};

0 comments on commit 1445502

Please sign in to comment.