Branch data Line data Source code
1 : : // ***************************************************************************** 2 : : /*! 3 : : \file src/DiffEq/Dirichlet/DirichletCoeffPolicy.cpp 4 : : \copyright 2012-2015 J. Bakosi, 5 : : 2016-2018 Los Alamos National Security, LLC., 6 : : 2019-2021 Triad National Security, LLC. 7 : : All rights reserved. See the LICENSE file for details. 8 : : \brief Dirichlet coefficients policies 9 : : \details This file defines coefficients policy classes for the Dirichlet 10 : : SDE, defined in DiffEq/Dirichlet/Dirichlet.h. For general 11 : : requirements on Dirichlet SDE coefficients policy classes see the 12 : : header file. 13 : : */ 14 : : // ***************************************************************************** 15 : : 16 : : #include "DirichletCoeffPolicy.hpp" 17 : : 18 : : using walker::DirichletCoeffConst; 19 : : 20 : 33 : DirichletCoeffConst::DirichletCoeffConst( 21 : : tk::ctr::ncomp_t ncomp, 22 : : const std::vector< kw::sde_b::info::expect::type >& b_, 23 : : const std::vector< kw::sde_S::info::expect::type >& S_, 24 : : const std::vector< kw::sde_kappa::info::expect::type >& k_, 25 : : std::vector< kw::sde_b::info::expect::type >& b, 26 : : std::vector< kw::sde_S::info::expect::type >& S, 27 : : std::vector< kw::sde_kappa::info::expect::type >& k ) 28 : : // ***************************************************************************** 29 : : // Constructor: initialize coefficients 30 : : //! \param[in] ncomp Number of scalar components in this SDE system 31 : : //! \param[in] b_ Vector used to initialize coefficient vector b 32 : : //! \param[in] S_ Vector used to initialize coefficient vector S 33 : : //! \param[in] k_ Vector used to initialize coefficient vector k 34 : : //! \param[in,out] b Coefficient vector to be initialized 35 : : //! \param[in,out] S Coefficient vector to be initialized 36 : : //! \param[in,out] k Coefficient vector to be initialized 37 : : // ***************************************************************************** 38 : : { 39 [ - + ][ - - ]: 33 : ErrChk( b_.size() == ncomp, [ - - ][ - - ] 40 : : "Wrong number of Dirichlet SDE parameters 'b'"); 41 [ - + ][ - - ]: 33 : ErrChk( S_.size() == ncomp, [ - - ][ - - ] 42 : : "Wrong number of Dirichlet SDE parameters 'S'"); 43 [ - + ][ - - ]: 33 : ErrChk( k_.size() == ncomp, [ - - ][ - - ] 44 : : "Wrong number of Dirichlet SDE parameters 'kappa'"); 45 : : 46 : 33 : b = b_; 47 : 33 : S = S_; 48 : 33 : k = k_; 49 : 33 : }