From afad2f2dcee891c3bfa850dbd7a1ce00eb0a1920 Mon Sep 17 00:00:00 2001 From: Martin Diehl Date: Sun, 1 Dec 2019 08:39:30 +0100 Subject: [PATCH] short and consistent naming --- src/plastic_nonlocal.f90 | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/plastic_nonlocal.f90 b/src/plastic_nonlocal.f90 index 82a2ad122..ae85dfe56 100644 --- a/src/plastic_nonlocal.f90 +++ b/src/plastic_nonlocal.f90 @@ -86,10 +86,10 @@ module plastic_nonlocal rho_dot_sgl_ID, & rho_dot_sgl_mobile_ID, & rho_dot_dip_ID, & - velocity_edge_pos_ID, & - velocity_edge_neg_ID, & - velocity_screw_pos_ID, & - velocity_screw_neg_ID, & + v_edg_pos_ID, & + v_edg_neg_ID, & + v_scr_pos_ID, & + v_scr_neg_ID, & accumulatedshear_ID end enum @@ -482,13 +482,13 @@ subroutine plastic_nonlocal_init case ('rho_dot_dip') outputID = merge(rho_dot_dip_ID,undefined_ID,prm%totalNslip>0) case ('velocity_edge_pos') - outputID = merge(velocity_edge_pos_ID,undefined_ID,prm%totalNslip>0) + outputID = merge(v_edg_pos_ID,undefined_ID,prm%totalNslip>0) case ('velocity_edge_neg') - outputID = merge(velocity_edge_neg_ID,undefined_ID,prm%totalNslip>0) + outputID = merge(v_edg_neg_ID,undefined_ID,prm%totalNslip>0) case ('velocity_screw_pos') - outputID = merge(velocity_screw_pos_ID,undefined_ID,prm%totalNslip>0) + outputID = merge(v_scr_pos_ID,undefined_ID,prm%totalNslip>0) case ('velocity_screw_neg') - outputID = merge(velocity_screw_neg_ID,undefined_ID,prm%totalNslip>0) + outputID = merge(v_scr_neg_ID,undefined_ID,prm%totalNslip>0) case ('accumulatedshear','accumulated_shear') outputID = merge(accumulatedshear_ID,undefined_ID,prm%totalNslip>0) end select @@ -2064,19 +2064,19 @@ outputsLoop: do o = 1,size(param(instance)%outputID) postResults(cs+1:cs+ns) = sum(rhoDotDip,2) cs = cs + ns - case (velocity_edge_pos_ID) + case (v_edg_pos_ID) postResults(cs+1:cs+ns) = v(1:ns,1) cs = cs + ns - case (velocity_edge_neg_ID) + case (v_edg_neg_ID) postResults(cs+1:cs+ns) = v(1:ns,2) cs = cs + ns - case (velocity_screw_pos_ID) + case (v_scr_pos_ID) postResults(cs+1:cs+ns) = v(1:ns,3) cs = cs + ns - case (velocity_screw_neg_ID) + case (v_scr_neg_ID) postResults(cs+1:cs+ns) = v(1:ns,4) cs = cs + ns