https://mooseframework.inl.gov
QuadInterWrapperPowerIC.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://mooseframework.inl.gov
3 //*
4 //* All rights reserved, see COPYRIGHT for full restrictions
5 //* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6 //*
7 //* Licensed under LGPL 2.1, please see LICENSE for details
8 //* https://www.gnu.org/licenses/lgpl-2.1.html
9 
10 #pragma once
11 
12 #include "QuadInterWrapperBaseIC.h"
13 #include <Eigen/Dense>
14 
20 {
21 public:
23  Real value(const Point & p) override;
24  virtual void initialSetup() override;
25 
26 protected:
30  unsigned int _numberoflines;
32  std::string _filename;
34  Eigen::MatrixXd _power_dis;
37  Eigen::MatrixXd _ref_qprime;
39  Eigen::MatrixXd _ref_power;
41  Eigen::MatrixXd _assembly_power_correction;
43  Eigen::MatrixXd _estimate_power;
44 
45 public:
47 };
Eigen::MatrixXd _estimate_power
Matrix which will hold the total estimated power of each fuel assembly [W].
unsigned int _numberoflines
The number of lines associated with the radial power profile .txt file.
Eigen::MatrixXd _power_dis
matrix that holds the values of the relative pin power
QuadInterWrapperPowerIC(const InputParameters &params)
Eigen::MatrixXd _ref_qprime
Average linear heat rate over the inter wrapper assembly [W/m].
Eigen::MatrixXd _assembly_power_correction
The correction that will be applied to the estimated calculation [unitless].
Eigen::MatrixXd _ref_power
Actual assembly power directly heating the inter-wrapper [W].
static InputParameters validParams()
virtual void initialSetup() override
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
Sets the axial heat rate for each pin according to a radial power distribution and a user defined axi...
std::string _filename
The name of the radial power profile file.
An abstract class for ICs for quadrilateral subchannels.
Real _power
The total power of the assembly.
Real value(const Point &p) override