https://mooseframework.inl.gov
functional_expansion_tools
unit
src
main.C
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
#include <fstream>
11
#include <string>
12
13
#include "
Moose.h
"
14
#include "
MooseInit.h
"
15
#include "
AppFactory.h
"
16
17
#include "gtest/gtest.h"
18
19
#include "
FunctionalExpansionToolsApp.h
"
20
21
MooseEnum
single_series_types_1D
(
"Legendre"
);
22
MooseEnum
single_series_types_2D
(
"Zernike"
);
23
MooseEnum
expansion_type
(
"orthonormal sqrt_mu standard"
);
24
MooseEnum
generation_type
(
"orthonormal sqrt_mu standard"
);
25
26
GTEST_API_
int
27
main
(
int
argc,
char
** argv)
28
{
29
// gtest removes (only) its args from argc and argv - so this must be before moose init
30
testing::InitGoogleTest(&argc, argv);
31
32
MooseInit
init
(argc, argv);
33
registerApp(
FunctionalExpansionToolsApp
);
34
Moose::_throw_on_error
=
true
;
35
Moose::_throw_on_warning
=
true
;
36
37
return
RUN_ALL_TESTS();
38
}
AppFactory.h
Moose.h
MooseInit.h
FunctionalExpansionToolsApp.h
MooseInit
FunctionalExpansionToolsApp
Definition:
FunctionalExpansionToolsApp.h:14
main
int main(int argc, char *argv[])
Definition:
main.C:15
single_series_types_1D
MooseEnum single_series_types_1D("Legendre")
single_series_types_2D
MooseEnum single_series_types_2D("Zernike")
init
void init(triangulateio &t)
MooseEnum
Moose::_throw_on_warning
bool _throw_on_warning
expansion_type
MooseEnum expansion_type("orthonormal sqrt_mu standard")
Moose::_throw_on_error
bool _throw_on_error
generation_type
MooseEnum generation_type("orthonormal sqrt_mu standard")
Generated on Fri Jul 18 2025 13:42:46 for https://mooseframework.inl.gov by
1.8.14