Code_Saturne
CFD tool
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
cs_gui_output.h
Go to the documentation of this file.
1 #ifndef __CS_GUI_OUTPUT_H__
2 #define __CS_GUI_OUTPUT_H__
3 
4 /*============================================================================
5  * Management of the GUI parameters file: main parameters
6  *============================================================================*/
7 
8 /*
9  This file is part of Code_Saturne, a general-purpose CFD tool.
10 
11  Copyright (C) 1998-2012 EDF S.A.
12 
13  This program is free software; you can redistribute it and/or modify it under
14  the terms of the GNU General Public License as published by the Free Software
15  Foundation; either version 2 of the License, or (at your option) any later
16  version.
17 
18  This program is distributed in the hope that it will be useful, but WITHOUT
19  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
20  FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
21  details.
22 
23  You should have received a copy of the GNU General Public License along with
24  this program; if not, write to the Free Software Foundation, Inc., 51 Franklin
25  Street, Fifth Floor, Boston, MA 02110-1301, USA.
26 */
27 
28 /*----------------------------------------------------------------------------*/
29 
30 /*----------------------------------------------------------------------------
31  * Local headers
32  *----------------------------------------------------------------------------*/
33 
34 #include "cs_base.h"
35 
36 /*----------------------------------------------------------------------------*/
37 
39 
40 /*============================================================================
41  * Type definitions
42  *============================================================================*/
43 
44 /*=============================================================================
45  * Public function prototypes
46  *============================================================================*/
47 
49 void cs_gui_postprocess_meshes(void);
50 
51 /*============================================================================
52  * Public function prototypes for Fortran API
53  *============================================================================*/
54 
55 /*----------------------------------------------------------------------------
56  * Activation of a writer depending of a formula
57  *
58  * Fortran Interface:
59  *
60  * SUBROUTINE uinpst (ttcabs, ntcabs)
61  * *****************
62  *
63  * INTEGER UREF <-- reference velocity
64  * DOUBLE ALMAX <-- reference length
65  *----------------------------------------------------------------------------*/
66 
67 void CS_PROCF (uinpst, UINPST) (const cs_int_t *ntcabs,
68  const cs_real_t *ttcabs);
69 
70 
71 void CS_PROCF (csenso, CSENSO) (const int *const nvppmx,
72  int *const ncapt,
73  int *const nthist,
74  double *const frhist,
75  int *const ntlist,
76  int *const iecaux,
77  int *const ipstdv,
78  int *const ipstyp,
79  int *const ipstcl,
80  int *const ipstft,
81  int *const ipstfo,
82  int *const ichrvr,
83  int *const ilisvr,
84  int *const ihisvr,
85  int *const tplfmt,
86  const int *const isca,
87  const int *const iscapp,
88  const int *const ipprtp,
89  double *const xyzcap);
90 
91 /*----------------------------------------------------------------------------*/
92 
94 
95 #endif /* __CS_GUI_OUTPUT_H__ */
void cs_gui_postprocess_meshes(void)
Definition: cs_gui_output.c:1716
#define BEGIN_C_DECLS
Definition: cs_defs.h:365
void uinpst(const cs_int_t *ntcabs, const cs_real_t *ttcabs)
Definition: cs_gui_output.c:1521
void csenso(const int *const nvppmx, int *const ncapt, int *const nthist, double *const frhist, int *const ntlist, int *const iecaux, int *const ipstdv, int *const ipstyp, int *const ipstcl, int *const ipstft, int *const ipstfo, int *const ichrvr, int *const ilisvr, int *const ihisvr, int *const tplfmt, const int *const isca, const int *const iscapp, const int *const ipprtp, double *const xyzcap)
Definition: cs_gui_output.c:1558
int cs_int_t
Definition: cs_defs.h:263
BEGIN_C_DECLS void cs_gui_postprocess_writers(void)
Definition: cs_gui_output.c:1785
#define END_C_DECLS
Definition: cs_defs.h:366
double cs_real_t
Definition: cs_defs.h:264
#define CS_PROCF(x, y)
Definition: cs_defs.h:379