Changeset 26032


Ignore:
Timestamp:
02/25/21 16:42:51 (4 years ago)
Author:
jdquinn
Message:

CHG: Updated comments

Location:
issm/trunk-jpl
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/examples/ISMIP/runme.m

    r26031 r26032  
    134134        % for y
    135135        % create maxY, list of indices where y is equal to max of y
    136         %  but not where x is equal to max or min of x
    137         % (i.e, indices in maxX and minX should be excluded from maxY and minY)
     136        % but not where x is equal to max or min of x
     137        % (i.e, indices in maxX and minX should be excluded from maxY and minY) 
    138138        %->
    139139
    140140        % create minY, list of indices where y is equal to max of y
    141         %  but not where x is equal to max or min of x
     141        % but not where x is equal to max or min of x
    142142        %->
    143143
  • issm/trunk-jpl/jenkins/examples_tests.sh

    r26030 r26032  
    302302                                                md.stressbalance.spcvy(basalnodes)=0.0;\n\
    303303                                                % periodic boundaries have to be fixed on the sides\n\
    304                                                 % create tabs with the side of the domain\n\
     304                                                % Find the indices of the sides of the domain, for x and then for y\n\
    305305                                                % for x\n\
    306                                                 % create maxX #help find\n\
     306                                                % create maxX, list of indices where x is equal to max of x (use >> help find)\n\
    307307                                                %->\n\
    308308                                                maxX=find(md.mesh.x==max(md.mesh.x));\n\
    309                                                 % create minX\n\
     309                                                % create minX, list of indices where x is equal to min of x\n\
    310310                                                %->\n\
    311311                                                minX=find(md.mesh.x==min(md.mesh.x));\n\
    312                                                 % for y, max X and minX should be excluded\n\
    313                                                 % create maxY\n\
     312                                                % for y\n\
     313                                                % create maxY, list of indices where y is equal to max of y\n\
     314                                                % but not where x is equal to max or min of x\n\
     315                                                % (i.e, indices in maxX and minX should be excluded from maxY and minY)\n\
     316                                                % but not where x is equal to max or min of x\n\
    314317                                                %->\n\
    315318                                                maxY=find(md.mesh.y==max(md.mesh.y) & md.mesh.x~=max(md.mesh.x) & md.mesh.x~=min(md.mesh.x));\n\
    316                                                 % create minY\n\
     319                                                % create minY, list of indices where y is equal to max of y\n\
    317320                                                %->\n\
    318321                                                minY=find(md.mesh.y==min(md.mesh.y) & md.mesh.x~=max(md.mesh.x) & md.mesh.x~=min(md.mesh.x));\n\
    319                                                 % set the node that should be paired together\n\
     322                                                % set the node that should be paired together, minX with maxX and minY with maxY\n\
    320323                                                % #md.stressbalance.vertex_pairing\n\
    321324                                                %->\n\
Note: See TracChangeset for help on using the changeset viewer.