MAST
Multidisciplinary-design Adaptation and Sensitivity Toolkit (MAST)
plate_bending_evaluation_thermal_stress.cpp
Go to the documentation of this file.
1 /*
2  * MAST: Multidisciplinary-design Adaptation and Sensitivity Toolkit
3  * Copyright (C) 2013-2020 Manav Bhatia and MAST authors
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18  */
19 
20 
21 // BOOST includes
22 #include <boost/test/unit_test.hpp>
23 
24 
25 // MAST includes
26 #include "examples/structural/plate_bending_thermal_stress/plate_bending_thermal_stress.h"
27 #include "tests/base/check_sensitivity.h"
28 
29 
30 
31 // libMesh includes
32 #include "libmesh/numeric_vector.h"
33 
34 
35 
36 BOOST_FIXTURE_TEST_SUITE (Structural2DPlateBendingWithOffset,
37  MAST::PlateBendingThermalStress)
38 
39 BOOST_AUTO_TEST_CASE (PlateLinearBendingWithThermalStressSensitivity) {
40 
41  this->init(libMesh::QUAD4, false);
43 }
44 
45 
46 BOOST_AUTO_TEST_CASE (PlateNonlinearBendingWithThermalStressSensitivity) {
47 
48  this->init(libMesh::QUAD4, true);
50 }
51 
52 
53 BOOST_AUTO_TEST_SUITE_END()
54 
BOOST_FIXTURE_TEST_SUITE(Structural2DPlateBendingWithOffset, MAST::PlateBendingThermalStress) BOOST_AUTO_TEST_CASE(PlateLinearBendingWithThermalStressSensitivity)
void check_sensitivity(ValType &v)
BOOST_AUTO_TEST_CASE(PlateNonlinearBendingWithThermalStressSensitivity)