Skip to content
Snippets Groups Projects
Select Git revision
  • fcecb101c342200368734ba25499b15bffcf4b34
  • master default protected
  • dof-renumbering
  • test-dof-hash
  • gdemesy-master-patch-30528
  • eval-space-time
  • oscillating_multiharm
  • MH_movement
  • axisqu
  • write_vtu_and_ensight_formats
  • movingband
  • CP_1972_add_vtu_file_writing
  • mortar
  • fast_freq_sweep_Resolution
  • applyresolvent_again
  • marteaua-master-patch-54323
  • patch-1
  • binde-master-patch-08072
  • binde-master-patch-52461
  • BCGSL
  • resolvent
  • getdp_3_5_0
  • getdp_3_4_0
  • getdp_3_3_0
  • getdp_3_2_0
  • getdp_3_1_0
  • getdp_3_0_4
  • getdp_3_0_3
  • getdp_3_0_2
  • getdp_3_0_1
  • getdp_3_0_0
  • onelab_mobile_2.1.0
  • getdp_2_11_3 protected
  • getdp_2_11_2 protected
  • getdp_2_11_1 protected
  • getdp_2_11_0 protected
  • getdp_2_10_0 protected
  • getdp_2_9_2 protected
  • getdp_2_9_1 protected
  • getdp_2_9_0 protected
  • getdp_2_8_0 protected
41 results

Pos_Element.h

Blame
  • Pos_Element.h 1.59 KiB
    // GetDP - Copyright (C) 1997-2018 P. Dular and C. Geuzaine, University of Liege
    //
    // See the LICENSE.txt file for license information. Please report all
    // bugs and problems to the public mailing list <getdp@onelab.info>.
    
    #ifndef _POS_ELEMENT_H_
    #define _POS_ELEMENT_H_
    
    #include "ProData.h"
    #include "ListUtils.h"
    
    /* ------------------------------------------------------------------------ */
    /*  P o s t E l e m e n t                                                   */
    /* ------------------------------------------------------------------------ */
    
    struct PostElement {    
      int              Index, Type, Depth;
      int              NbrNodes, * NumNodes;
      double           * u, * v, * w, * x, * y, * z;
      struct Value     * Value;
    } ;
    
    struct PostElement * Create_PostElement(int Index, int Type, int NbrNodes, int Depth);
    void                 Destroy_PostElement(struct PostElement * PostElement) ;
    struct PostElement * NodeCopy_PostElement(struct PostElement *PostElement);
    struct PostElement * PartialCopy_PostElement(struct PostElement *PostElement);
    
    void  Fill_PostElement(struct Geo_Element *GE, List_T *PostElement_L, 
    		       int Index, int Depth, int Skin, List_T * EvaluationPoints_L,
    		       int DecomposeInSimplex) ;
    void Cut_PostElement(struct PostElement * PE, struct Geo_Element * GE,
    		     List_T * PE_L, int Index, int Depth, int Skin,
    		     int DecomposeInSimplex) ;
    void Sort_PostElement_Connectivity(List_T *PostElement_L);
    
    int fcmp_PostElement (const void *a, const void *b);
    int fcmp_PostElement_v0(const void *a, const void *b);
    int fcmp_PostElement_absu0(const void *a, const void *b);
    
    #endif