Skip to content
Snippets Groups Projects
Select Git revision
  • 9ca500f78387ba9ff289b58d0c2683810ef2dae6
  • 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_Formulation.h

Blame
  • STensor43.cpp 1.43 KiB
    // Gmsh - Copyright (C) 1997-2019 C. Geuzaine, J.-F. Remacle
    //
    // See the LICENSE.txt file for license information. Please report all
    // issues on https://gitlab.onelab.info/gmsh/gmsh/issues.
    //
    // Contributor(s):
    //   Eric Bechet
    //
    
    #include "STensor43.h"
    
    void STensor43::print(const char *s) const
    {
      char format[8192];
      const char l[128] =
        "%12.5E %12.5E %12.5E  %12.5E %12.5E %12.5E  %12.5E %12.5E %12.5E \n";
      sprintf(format, " tensor4 %s : \n %s %s %s \n %s %s %s \n %s %s %s \n", s, l,
              l, l, l, l, l, l, l, l);
      printf(format, s, _val[0], _val[1], _val[2], _val[3], _val[4], _val[5],
             _val[6], _val[7], _val[8], _val[9], _val[10], _val[11], _val[12],
             _val[13], _val[14], _val[15], _val[16], _val[17], _val[18], _val[19],
             _val[20], _val[21], _val[22], _val[23], _val[24], _val[25], _val[26],
    
             _val[27], _val[28], _val[29], _val[30], _val[31], _val[32], _val[33],
             _val[34], _val[35], _val[36], _val[37], _val[38], _val[39], _val[40],
             _val[41], _val[42], _val[43], _val[44], _val[45], _val[46], _val[47],
             _val[48], _val[49], _val[50], _val[51], _val[52], _val[53],
    
             _val[54], _val[55], _val[56], _val[57], _val[58], _val[59], _val[60],
             _val[61], _val[62], _val[63], _val[64], _val[65], _val[66], _val[67],
             _val[68], _val[69], _val[70], _val[71], _val[72], _val[73], _val[74],
             _val[75], _val[76], _val[77], _val[78], _val[79], _val[80]);
    }