BELFEM 0.9.0
Berkeley Lab Finite Element Framework
Loading...
Searching...
No Matches
cl_GT_ComparisonObjects.hpp
Go to the documentation of this file.
1/*
2 * BELFEM -- The Berkeley Lab Finite Element Framework
3 * Copyright (c) 2026, The Regents of the University of California,
4 * through Lawrence Berkeley National Laboratory (subject to receipt of any required
5 * approvals from the U.S. Dept. of Energy). All rights reserved.
6 *
7 * Developers: Christian Messe, Gregory Giard
8 *
9 * See the top-level LICENSE file for the complete license and disclaimer.
10 */
11
12#ifndef BELFEM_CL_GT_COMPARISONOBJECTS_HPP
13#define BELFEM_CL_GT_COMPARISONOBJECTS_HPP
14
15#include "cl_GT_HeatPoly.hpp"
17namespace belfem
18{
19 namespace gastables
20 {
21 // comparision object for heat polynomial
22 static struct OpHeatPoly
23 {
24 bool
25 operator()( const HeatPoly * aA, const HeatPoly * aB )
26 {
27 return aA->T_min() < aB->T_min();
28 }
29 } fHeatPoly;
30
31 // comparision object for transport polynomial
32 static struct OpTransportPoly
33 {
34 bool
35 operator()( const TransportPoly * aA, const TransportPoly * aB )
36 {
37 return aA->T_min() < aB->T_min();
38 }
39 } fTransportPoly;
40
41 }
42}
43#endif //BELFEM_CL_GT_COMPARISONOBJECTS_HPP
Definition cl_Gas.hpp:33
USER GUIDES:
Definition cl_Capacitor.cpp:16