MAST
Multidisciplinary-design Adaptation and Sensitivity Toolkit (MAST)
plate_bending_evaluation.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/plate_bending.h"
27 #include "tests/base/check_sensitivity.h"
28 
29 
30 
31 
32 BOOST_FIXTURE_TEST_SUITE (Structural2DPlateBending,
33  MAST::PlateBending)
34 
35 BOOST_AUTO_TEST_CASE (PlateLinearBendingSensitivity) {
36 
37  this->init(libMesh::QUAD4, false);
39 }
40 
41 
42 BOOST_AUTO_TEST_CASE (PlateNonlinearBendingSensitivity) {
43 
44  this->init(libMesh::QUAD4, true);
46 }
47 
48 
49 BOOST_AUTO_TEST_SUITE_END()
50 
void check_sensitivity(ValType &v)
BOOST_FIXTURE_TEST_SUITE(Structural2DPlateBending, MAST::PlateBending) BOOST_AUTO_TEST_CASE(PlateLinearBendingSensitivity)
BOOST_AUTO_TEST_CASE(PlateNonlinearBendingSensitivity)