Skip to content

Commit

Permalink
clarify UM
Browse files Browse the repository at this point in the history
  • Loading branch information
FabioBergonti committed May 16, 2022
1 parent 001c4b3 commit fd818df
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions +mystica/+stgs/getDefaultSettingsSimDynRel.m
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@

%% Desired shape

stgs.desiredShape.fun = @(x,y) 0.005*(5*cos(10*x-2)+5*cos(10*x-20*y));
stgs.desiredShape.fun = @(x,y,t) stgs.desiredShape.fun(x-t/8e1,y-t/8e1);
stgs.desiredShape.fun = @(x,y,t) stgs.desiredShape.fun(x,y,t)-stgs.desiredShape.fun(0,0,t);
stgs.desiredShape.fun = @(x,y,t) stgs.desiredShape.fun(x/stgs.unitMeas.converter.length,y/stgs.unitMeas.converter.length,t)*stgs.unitMeas.converter.length;
stgs.desiredShape.fun = @(x,y) 0.005*(5*cos(10*x-2)+5*cos(10*x-20*y)); %[m]
stgs.desiredShape.fun = @(x,y,t) stgs.desiredShape.fun(x-t/8e1,y-t/8e1); %[m]
stgs.desiredShape.fun = @(x,y,t) stgs.desiredShape.fun(x,y,t)-stgs.desiredShape.fun(0,0,t); %[m]
stgs.desiredShape.fun = @(x,y,t) stgs.desiredShape.fun(x/stgs.unitMeas.converter.length,y/stgs.unitMeas.converter.length,t)*stgs.unitMeas.converter.length; %[m]*(umc.length)
stgs.desiredShape.invertNormals = 1;

%% Saving & Logger
Expand Down

0 comments on commit fd818df

Please sign in to comment.