Пример #1
0
void
RankFourTensor::fillFromInputVector(const std::vector<Real> input, bool all_21)
{
  mooseDeprecated();

  if (all_21)
    fillFromInputVector(input, symmetric21);
  else
    fillFromInputVector(input, symmetric9);
}
Пример #2
0
RankFourTensor::RankFourTensor(const std::vector<Real> & input, FillMethod fill_method)
{
  fillFromInputVector(input, fill_method);
}