~ubuntu-branches/ubuntu/precise/code-saturne/precise

« back to all changes in this revision

Viewing changes to src/gui/cs_gui_output.h

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2011-11-24 00:00:08 UTC
  • mfrom: (6.1.9 sid)
  • Revision ID: package-import@ubuntu.com-20111124000008-2vo99e38267942q5
Tags: 2.1.0-3
Install a missing file

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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-2011 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
 
 
38
BEGIN_C_DECLS
 
39
 
 
40
/*============================================================================
 
41
 * Type definitions
 
42
 *============================================================================*/
 
43
 
 
44
/*=============================================================================
 
45
 * Public function prototypes
 
46
 *============================================================================*/
 
47
 
 
48
void cs_gui_postprocess_writers(void);
 
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
 
 
93
END_C_DECLS
 
94
 
 
95
#endif /* __CS_GUI_OUTPUT_H__ */