Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
ECheynet authored Mar 27, 2023
1 parent f63d090 commit 2e52df8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dynaRespTD.m
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@
A = (1./aDT2.*M+beta/aDT*C+K);
B1 = F+M.*(1./aDT2*x0+1./aDT*dx0+(1/(2*alphaCoeff)-1)*ddx0);
B2 = C.*(beta/aDT*x0+(beta/alphaCoeff-1).*dx0);
B3 = (beta/alphaCoeff-2)*dt/2*ddx0;
B3 = C.*((beta/alphaCoeff-2)*dt/2*ddx0);

x1 = A\(B1+B2+B3);
ddx1= 1/aDT2.*(x1-x0)-1/aDT.*dx0-(1/(2*alphaCoeff)-1).*ddx0;
Expand Down
2 changes: 1 addition & 1 deletion dynaRespTD_noCoupling.m
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
A = (1./aDT2.*M+beta/aDT*C+K);
B1 = F+M.*(1./aDT2*x0+1./aDT*dx0+(1/(2*alphaCoeff)-1)*ddx0);
B2 = C.*(beta/aDT*x0+(beta/alphaCoeff-1).*dx0);
B3 = (beta/alphaCoeff-2)*dt/2*ddx0;
B3 = C.*(beta/alphaCoeff-2)*dt/2*ddx0;

x1 = A\(B1+B2+B3);
ddx1= 1/aDT2.*(x1-x0)-1/aDT.*dx0-(1/(2*alphaCoeff)-1).*ddx0;
Expand Down

0 comments on commit 2e52df8

Please sign in to comment.