Artifact 7f6ea9ee113cf0a9d528d076f1b1a8974d1fc5405b480c4448ceec9c6baaa689:


## Plots the effective spring constant.

p = NonlinearMSD_numpar;	# Numerical parameters
s = NonlinearMSD_sympar		# Symbolic parameters

Eta = eta=[0:0.01:1]*pi; K = [];
for eta=Eta
  p(s.eta) = eta;		# Change the eta parameter
  A = NonlinearMSD_sm(p);	# SS A matrix
  k = -A(2,1);
  K = [K k];
endfor

grid;
ylabel("k");
xlabel("eta");
plot(Eta,K);
figfig("k","eps");

MTT: Model Transformation Tools
GitHub | SourceHut | Sourceforge | Fossil RSS ]