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

« back to all changes in this revision

Viewing changes to preprocessor/pre-post/ecs_post_med.h

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2011-11-01 17:43:32 UTC
  • mto: (6.1.7 sid)
  • mto: This revision was merged to the branch mainline in revision 11.
  • Revision ID: package-import@ubuntu.com-20111101174332-tl4vk45no0x3emc3
Tags: upstream-2.1.0
Import upstream version 2.1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _ECS_POST_MED_H_
 
2
#define _ECS_POST_MED_H_
 
3
 
 
4
/*============================================================================
 
5
 *  Prototypes des fonctions de base
 
6
 *   réalisant les sorties au format MED
 
7
 *============================================================================*/
 
8
 
 
9
/*
 
10
  This file is part of Code_Saturne, a general-purpose CFD tool.
 
11
 
 
12
  Copyright (C) 1998-2011 EDF S.A.
 
13
 
 
14
  This program is free software; you can redistribute it and/or modify it under
 
15
  the terms of the GNU General Public License as published by the Free Software
 
16
  Foundation; either version 2 of the License, or (at your option) any later
 
17
  version.
 
18
 
 
19
  This program is distributed in the hope that it will be useful, but WITHOUT
 
20
  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 
21
  FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
 
22
  details.
 
23
 
 
24
  You should have received a copy of the GNU General Public License along with
 
25
  this program; if not, write to the Free Software Foundation, Inc., 51 Franklin
 
26
  Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
27
*/
 
28
 
 
29
/*----------------------------------------------------------------------------*/
 
30
 
 
31
/*============================================================================
 
32
 *                                 Visibilité
 
33
 *============================================================================*/
 
34
 
 
35
#include "cs_config.h"
 
36
 
 
37
#if defined(HAVE_MED)
 
38
 
 
39
 
 
40
/*----------------------------------------------------------------------------
 
41
 *  Fichiers `include' librairie standard C
 
42
 *----------------------------------------------------------------------------*/
 
43
 
 
44
 
 
45
/*----------------------------------------------------------------------------
 
46
 *  Fichiers `include' publics  du  paquetage global "Utilitaire"
 
47
 *----------------------------------------------------------------------------*/
 
48
 
 
49
#include "ecs_def.h"
 
50
 
 
51
 
 
52
/*----------------------------------------------------------------------------
 
53
 *  Fichiers `include' publics  des paquetages visibles
 
54
 *----------------------------------------------------------------------------*/
 
55
 
 
56
 
 
57
/*----------------------------------------------------------------------------
 
58
 *  Fichiers `include' publics  du  paquetage courant
 
59
 *----------------------------------------------------------------------------*/
 
60
 
 
61
#include "ecs_med.h"
 
62
 
 
63
 
 
64
/*============================================================================
 
65
 *                         Définitions d'énumerations
 
66
 *============================================================================*/
 
67
 
 
68
 
 
69
/*============================================================================
 
70
 *                       Définition de macros
 
71
 *============================================================================*/
 
72
 
 
73
 
 
74
/*============================================================================
 
75
 *                       Prototypes de fonctions publiques
 
76
 *============================================================================*/
 
77
 
 
78
/*----------------------------------------------------------------------------
 
79
 *  Fonction initialisant une structure `ecs_med_t` utilisée en écriture.
 
80
 *----------------------------------------------------------------------------*/
 
81
 
 
82
ecs_med_t *
 
83
ecs_post_med__cree_cas(const char  *nom_cas);
 
84
 
 
85
/*----------------------------------------------------------------------------
 
86
 *  Fonction détruisant une structure `ecs_med_t` utilisée en écriture.
 
87
 *----------------------------------------------------------------------------*/
 
88
 
 
89
ecs_med_t *
 
90
ecs_post_med__detruit_cas(ecs_med_t  *cas_med);
 
91
 
 
92
/*----------------------------------------------------------------------------
 
93
 *  Fonction définissant un maillage pour une structure `ecs_med_t`.
 
94
 *----------------------------------------------------------------------------*/
 
95
 
 
96
void
 
97
ecs_post_med__ajoute_maillage(const char       *nom_maillage,
 
98
                              const ecs_int_t   dim_m,
 
99
                              ecs_med_t        *cas_med);
 
100
 
 
101
#endif /* HAVE_MED */
 
102
 
 
103
/*----------------------------------------------------------------------------*/
 
104
 
 
105
#endif /* _ECS_POST_MED_H_ */
 
106