source:
issm/oecreview/Archive/22819-23185/ISSM-22878-22879.diff
Last change on this file was 23186, checked in by , 7 years ago | |
---|---|
File size: 13.4 KB |
-
../trunk-jpl/src/m/classes/mesh2d.js
31 31 fielddisplay(this,"vertexonboundary","vertices on the boundary of the domain flag list"); 32 32 fielddisplay(this,"segments","edges on domain boundary (vertex1 vertex2 element)"); 33 33 fielddisplay(this,"segmentmarkers","number associated to each segment"); 34 fielddisplay(this,"vertexconnectivity","list of vertices connected to vertex_i");35 fielddisplay(this,"elementconnectivity","list of vertices connectedto element_i");34 fielddisplay(this,"vertexconnectivity","list of elements connected to vertex_i"); 35 fielddisplay(this,"elementconnectivity","list of elements adjacent to element_i"); 36 36 fielddisplay(this,"average_vertex_connectivity","average number of vertices connected to one vertex"); 37 37 38 38 console.log(sprintf("\n Extracted model:")); -
../trunk-jpl/src/m/classes/mesh3dtetras.m
142 142 fielddisplay(self,'lowerelements','lower element list (NaN for element on the lower layer'); 143 143 fielddisplay(self,'vertexonboundary','vertices on the boundary of the domain flag list'); 144 144 145 fielddisplay(self,'vertexconnectivity','list of vertices connected to vertex_i');146 fielddisplay(self,'elementconnectivity','list of vertices connectedto element_i');145 fielddisplay(self,'vertexconnectivity','list of elements connected to vertex_i'); 146 fielddisplay(self,'elementconnectivity','list of elements adjacent to element_i'); 147 147 fielddisplay(self,'average_vertex_connectivity','average number of vertices connected to one vertex'); 148 148 149 149 disp(sprintf('\n Extracted model:')); -
../trunk-jpl/src/m/classes/mesh2dvertical.py
58 58 string="%s\n%s"%(string,fielddisplay(self,'vertexonsurface','vertices on the surface of the domain flag list')) 59 59 string="%s\n%s"%(string,fielddisplay(self,"segments","edges on domain boundary (vertex1 vertex2 element)")) 60 60 string="%s\n%s"%(string,fielddisplay(self,"segmentmarkers","number associated to each segment")) 61 string="%s\n%s"%(string,fielddisplay(self,"vertexconnectivity","list of vertices connected to vertex_i"))62 string="%s\n%s"%(string,fielddisplay(self,"elementconnectivity","list of vertices connectedto element_i"))61 string="%s\n%s"%(string,fielddisplay(self,"vertexconnectivity","list of elements connected to vertex_i")) 62 string="%s\n%s"%(string,fielddisplay(self,"elementconnectivity","list of elements adjacent to element_i")) 63 63 string="%s\n%s"%(string,fielddisplay(self,"average_vertex_connectivity","average number of vertices connected to one vertex")) 64 64 65 65 string="%s%s"%(string,"\n\n Projection:") -
../trunk-jpl/src/m/classes/mesh3dprisms.m
152 152 fielddisplay(self,'lowerelements','lower element list (NaN for element on the lower layer'); 153 153 fielddisplay(self,'vertexonboundary','vertices on the boundary of the domain flag list'); 154 154 155 fielddisplay(self,'vertexconnectivity','list of vertices connected to vertex_i');156 fielddisplay(self,'elementconnectivity','list of vertices connectedto element_i');155 fielddisplay(self,'vertexconnectivity','list of elements connected to vertex_i'); 156 fielddisplay(self,'elementconnectivity','list of elements adjacent to element_i'); 157 157 fielddisplay(self,'average_vertex_connectivity','average number of vertices connected to one vertex'); 158 158 159 159 disp(sprintf('\n Extracted model:')); -
../trunk-jpl/src/m/classes/mesh2d.m
118 118 fielddisplay(self,'vertexonboundary','vertices on the boundary of the domain flag list'); 119 119 fielddisplay(self,'segments','edges on domain boundary (vertex1 vertex2 element)'); 120 120 fielddisplay(self,'segmentmarkers','number associated to each segment'); 121 fielddisplay(self,'vertexconnectivity','list of vertices connected to vertex_i');122 fielddisplay(self,'elementconnectivity','list of vertices connectedto element_i');121 fielddisplay(self,'vertexconnectivity','list of elements connected to vertex_i'); 122 fielddisplay(self,'elementconnectivity','list of elements adjacent to element_i'); 123 123 fielddisplay(self,'average_vertex_connectivity','average number of vertices connected to one vertex'); 124 124 125 125 disp(sprintf('\n Extracted model:')); -
../trunk-jpl/src/m/classes/spheremesh.m
73 73 disp(sprintf('\n Properties:')); 74 74 fielddisplay(self,'numberoflayers','number of extrusion layers'); 75 75 76 fielddisplay(self,'vertexconnectivity','list of vertices connected to vertex_i');77 fielddisplay(self,'elementconnectivity','list of vertices connectedto element_i');76 fielddisplay(self,'vertexconnectivity','list of elements connected to vertex_i'); 77 fielddisplay(self,'elementconnectivity','list of elements adjacent to element_i'); 78 78 fielddisplay(self,'average_vertex_connectivity','average number of vertices connected to one vertex'); 79 79 80 80 end % }}} -
../trunk-jpl/src/m/classes/mesh3dprisms.py
78 78 string="%s\n%s"%(string,fielddisplay(self,"lowervertex","lower vertex list (NaN for vertex on the lower surface)")) 79 79 string="%s\n%s"%(string,fielddisplay(self,"lowerelements","lower element list (NaN for element on the lower layer)")) 80 80 string="%s\n%s"%(string,fielddisplay(self,"vertexonboundary","vertices on the boundary of the domain flag list")) 81 string="%s\n%s"%(string,fielddisplay(self,"vertexconnectivity","list of vertices connected to vertex_i"))82 string="%s\n%s"%(string,fielddisplay(self,"elementconnectivity","list of vertices connectedto element_i"))81 string="%s\n%s"%(string,fielddisplay(self,"vertexconnectivity","list of elements connected to vertex_i")) 82 string="%s\n%s"%(string,fielddisplay(self,"elementconnectivity","list of elements adjacent to element_i")) 83 83 string="%s\n%s"%(string,fielddisplay(self,"average_vertex_connectivity","average number of vertices connected to one vertex")) 84 84 85 85 string="%s%s"%(string,"\n\n Extracted model:") -
../trunk-jpl/src/m/classes/mesh3dsurface.py
69 69 string="%s\n%s"%(string,fielddisplay(self,'vertexonboundary','vertices on the boundary of the domain flag list')) 70 70 string="%s\n%s"%(string,fielddisplay(self,'segments','edges on domain boundary (vertex1 vertex2 element)')) 71 71 string="%s\n%s"%(string,fielddisplay(self,'segmentmarkers','number associated to each segment')) 72 string="%s\n%s"%(string,fielddisplay(self,'vertexconnectivity','list of vertices connected to vertex_i'))73 string="%s\n%s"%(string,fielddisplay(self,'elementconnectivity','list of vertices connectedto element_i'))72 string="%s\n%s"%(string,fielddisplay(self,'vertexconnectivity','list of elements connected to vertex_i')) 73 string="%s\n%s"%(string,fielddisplay(self,'elementconnectivity','list of elements adjacent to element_i')) 74 74 string="%s\n%s"%(string,fielddisplay(self,'average_vertex_connectivity','average number of vertices connected to one vertex')) 75 75 76 76 string+='\n Extracted model():' -
../trunk-jpl/src/m/classes/mesh2d.py
56 56 string="%s\n%s"%(string,fielddisplay(self,"vertexonboundary","vertices on the boundary of the domain flag list")) 57 57 string="%s\n%s"%(string,fielddisplay(self,"segments","edges on domain boundary (vertex1 vertex2 element)")) 58 58 string="%s\n%s"%(string,fielddisplay(self,"segmentmarkers","number associated to each segment")) 59 string="%s\n%s"%(string,fielddisplay(self,"vertexconnectivity","list of vertices connected to vertex_i"))60 string="%s\n%s"%(string,fielddisplay(self,"elementconnectivity","list of vertices connectedto element_i"))59 string="%s\n%s"%(string,fielddisplay(self,"vertexconnectivity","list of elements connected to vertex_i")) 60 string="%s\n%s"%(string,fielddisplay(self,"elementconnectivity","list of elements adjacent to element_i")) 61 61 string="%s\n%s"%(string,fielddisplay(self,"average_vertex_connectivity","average number of vertices connected to one vertex")) 62 62 63 63 string="%s%s"%(string,"\n\n Extracted model:") -
../trunk-jpl/src/m/classes/mesh3dprisms.js
63 63 fielddisplay(this,'lowerelements','lower element list (NaN for element on the lower layer'); 64 64 fielddisplay(this,'vertexonboundary','vertices on the boundary of the domain flag list'); 65 65 66 fielddisplay(this,'vertexconnectivity','list of vertices connected to vertex_i');67 fielddisplay(this,'elementconnectivity','list of vertices connectedto element_i');66 fielddisplay(this,'vertexconnectivity','list of elements connected to vertex_i'); 67 fielddisplay(this,'elementconnectivity','list of elements adjacent to element_i'); 68 68 fielddisplay(this,'average_vertex_connectivity','average number of vertices connected to one vertex'); 69 69 70 70 console.log(sprintf('\n Extracted model:')); -
../trunk-jpl/src/m/classes/mesh2dvertical.m
120 120 fielddisplay(self,'vertexonsurface','vertices on the surface of the domain flag list'); 121 121 fielddisplay(self,'segments','edges on domain boundary (vertex1 vertex2 element)'); 122 122 fielddisplay(self,'segmentmarkers','number associated to each segment'); 123 fielddisplay(self,'vertexconnectivity','list of vertices connected to vertex_i');124 fielddisplay(self,'elementconnectivity','list of vertices connectedto element_i');123 fielddisplay(self,'vertexconnectivity','list of elements connected to vertex_i'); 124 fielddisplay(self,'elementconnectivity','list of elements adjacent to element_i'); 125 125 fielddisplay(self,'average_vertex_connectivity','average number of vertices connected to one vertex'); 126 126 127 127 disp(sprintf('\n Projection:')); -
../trunk-jpl/src/m/classes/mesh3dsurface.js
32 32 fielddisplay(this,"vertexonboundary","vertices on the boundary of the domain flag list"); 33 33 fielddisplay(this,"segments","edges on domain boundary (vertex1 vertex2 element)"); 34 34 fielddisplay(this,"segmentmarkers","number associated to each segment"); 35 fielddisplay(this,"vertexconnectivity","list of vertices connected to vertex_i");36 fielddisplay(this,"elementconnectivity","list of vertices connectedto element_i");35 fielddisplay(this,"vertexconnectivity","list of elements connected to vertex_i"); 36 fielddisplay(this,"elementconnectivity","list of elements adjacent to element_i"); 37 37 fielddisplay(this,"average_vertex_connectivity","average number of vertices connected to one vertex"); 38 38 39 39 console.log(sprintf("\n Extracted model:")); -
../trunk-jpl/src/m/classes/mesh3dsurface.m
122 122 fielddisplay(obj,'vertexonboundary','vertices on the boundary of the domain flag list'); 123 123 fielddisplay(obj,'segments','edges on domain boundary (vertex1 vertex2 element)'); 124 124 fielddisplay(obj,'segmentmarkers','number associated to each segment'); 125 fielddisplay(obj,'vertexconnectivity','list of vertices connected to vertex_i');126 fielddisplay(obj,'elementconnectivity','list of vertices connectedto element_i');125 fielddisplay(obj,'vertexconnectivity','list of elements connected to vertex_i'); 126 fielddisplay(obj,'elementconnectivity','list of elements adjacent to element_i'); 127 127 fielddisplay(obj,'average_vertex_connectivity','average number of vertices connected to one vertex'); 128 128 129 129 disp(sprintf('\n Extracted model:'));
Note:
See TracBrowser
for help on using the repository browser.