1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | foam-extend: Open Source CFD
4 \\ / O peration | Version: 3.2
5 \\ / A nd | Web: http://www.foam-extend.org
6 \\/ M anipulation | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
9 This file is part of foam-extend.
11 foam-extend is free software: you can redistribute it and/or modify it
12 under the terms of the GNU General Public License as published by the
13 Free Software Foundation, either version 3 of the License, or (at your
14 option) any later version.
16 foam-extend is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
28 Module for EnSight 7.6 to read FOAM data directly without translation
30 It can currently handle cells of type:
31 Z_HEX08, Z_PEN06, Z_TET04, Z_PUR05
33 See also: README_USERD_2.0
34 24 Sep 2001: NN - Added support for Ensight API 2.0
35 02 Sep 2002: NN - Added support for ghost cells
36 13 Mar 2004: NN - Added patches to the parts
38 \*---------------------------------------------------------------------------*/
43 #include "IOobjectList.H"
44 #include "CloudTemplate.H"
45 #include "passiveParticle.H"
47 #include "cellModeller.H"
49 #include "globalFoam.H"
51 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
56 #include "global_extern.h"
58 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
60 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
62 #include "USERD_bkup.H"
63 #include "USERD_get_name_of_reader.H"
64 #include "USERD_set_filenames.H"
65 #include "USERD_get_number_of_model_parts.H"
66 #include "USERD_get_changing_geometry_status.H"
67 #include "USERD_get_dataset_query_file_info.H"
68 #include "USERD_get_element_label_status.H"
69 #include "USERD_get_node_label_status.H"
70 #include "USERD_get_number_of_files_in_dataset.H"
71 #include "USERD_get_number_of_variables.H"
72 #include "USERD_stop_part_building.H"
75 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
76 // slightly changed with 2.0 from 1.0
77 // (to handle complex variables - not used by FOAM anyway)
78 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
80 #include "USERD_get_constant_val.H"
81 #include "USERD_get_descrip_lines.H"
82 #include "USERD_get_var_value_at_specific.H"
83 #include "USERD_get_gold_variable_info.H"
86 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
87 // critical changes with 2.0 from 1.0
88 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
90 #include "USERD_get_gold_part_build_info.H"
91 #include "USERD_get_num_of_time_steps.H"
92 #include "USERD_get_sol_times.H"
93 #include "USERD_set_time_set_and_step.H"
95 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
96 // new additions with 2.0 from 1.0
97 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
99 #include "USERD_get_var_by_component.H"
100 #include "USERD_get_part_coords.H"
101 #include "USERD_get_part_node_ids.H"
102 #include "USERD_get_part_elements_by_type.H"
103 #include "USERD_get_part_element_ids_by_type.H"
105 #include "USERD_exit_routine.H"
106 #include "USERD_get_model_extents.H"
107 #include "USERD_get_reader_version.H"
108 #include "USERD_get_number_timesets.H"
109 #include "USERD_get_timeset_description.H"
110 #include "USERD_get_geom_timeset_number.H"
112 #include "USERD_get_border_availability.H"
113 #include "USERD_get_border_elements_by_type.H"
115 #include "USERD_get_maxsize_info.H"
116 #include "USERD_set_server_number.H"
118 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
119 // new additions with 2.03 from 2.02
120 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
122 #include "USERD_get_number_of_material_sets.H"
123 #include "USERD_get_matf_set_info.H"
124 #include "USERD_get_number_of_materials.H"
125 #include "USERD_get_matf_var_info.H"
126 #include "USERD_size_matf_data.H"
127 #include "USERD_load_matf_data.H"
128 #include "USERD_get_nsided_conn.H"
129 #include "USERD_get_nfaced_nodes_per_face.H"
130 #include "USERD_get_nfaced_conn.H"
132 //**********************************************************************
133 //======================================================================
134 // STRUCTURED DATA STUFF - not used in foam
135 //======================================================================
136 //**********************************************************************
138 #include "USERD_structured_data.H"
142 // ************************************************************************ //