TrioCFD 1.9.8
TrioCFD documentation
Loading...
Searching...
No Matches
Symetrie.h
1/****************************************************************************
2* Copyright (c) 2022, CEA
3* All rights reserved.
4*
5* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
6* 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
7* 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
8* 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
9*
10* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
11* IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
12* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
13*
14*****************************************************************************/
15
16#ifndef Symetrie_included
17#define Symetrie_included
18
19#include <Navier.h>
20
21
22/*! @brief classe Symetrie Sur les faces de symetrie on a les proprietes suivantes:
23 *
24 * - composante normale de la vitesse nulle
25 * - composante tangentielle de la contrainte nulle
26 * (condition de glissement)
27 * - les gradients des grandeurs scalaires sont nuls
28 * Dans une equation de transport d'un scalaire (temperature, concentration,
29 * K, epsilon), la condition Symetrie met les gradients des grandeurs
30 * scalaires a 0.
31 * Dans une equation de Navier_Stokes, elle impose la composante normale
32 * de la vitesse nulle (condition de glissement)
33 *
34 * @sa Cond_lim_base
35 */
36class Symetrie : public Navier
37{
38 Declare_instanciable(Symetrie);
39};
40
41#endif
classe Navier Condition aux limites sur la vitesse de type "Navier" :
Definition Navier.h:31
classe Symetrie Sur les faces de symetrie on a les proprietes suivantes:
Definition Symetrie.h:37