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

« back to all changes in this revision

Viewing changes to preprocessor/pre-post/ecs_pre_nopo.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 _ECS_PRE_NOPO_H_
 
2
#define _ECS_PRE_NOPO_H_
 
3
 
 
4
/*============================================================================
 
5
 *  Prototype de la fonction
 
6
 *   de lecture d'un fichier de maillage NOPO (INRIA, Simail)
 
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
 
 
36
/*----------------------------------------------------------------------------
 
37
 *  Fichiers `include' librairie standard C
 
38
 *----------------------------------------------------------------------------*/
 
39
 
 
40
 
 
41
/*----------------------------------------------------------------------------
 
42
 *  Fichiers `include' publics  du  paquetage global "Utilitaire"
 
43
 *----------------------------------------------------------------------------*/
 
44
 
 
45
 
 
46
/*----------------------------------------------------------------------------
 
47
 *  Fichiers `include' publics  des paquetages visibles
 
48
 *----------------------------------------------------------------------------*/
 
49
 
 
50
#include "ecs_maillage.h"
 
51
 
 
52
 
 
53
/*----------------------------------------------------------------------------
 
54
 *  Fichiers `include' publics  du  paquetage courant
 
55
 *----------------------------------------------------------------------------*/
 
56
 
 
57
 
 
58
/*============================================================================
 
59
 *                       Prototypes de fonctions publiques
 
60
 *============================================================================*/
 
61
 
 
62
/*----------------------------------------------------------------------------
 
63
 *  Lecture d'un fichier NOPO (Format INRIA utilisé par Simail)
 
64
 *   et affectation des données dans la structure de maillage
 
65
 *----------------------------------------------------------------------------*/
 
66
 
 
67
ecs_maillage_t *
 
68
ecs_pre_nopo__lit_maillage(const char  *nom_fic_maillage);
 
69
 
 
70
/*----------------------------------------------------------------------------*/
 
71
 
 
72
#endif /* _ECS_PRE_NOPO_H_ */