Artifact 3653e4fcc149a2b0055eb4af70a7d125d6aeba44d618c8ce8f22edec2b583986:


function [x] = mtt_euler(x,dx,dt,Nx,open) # Euler update
  I_open = nozeros(open.*[1:Nx]'); # Indices of open switches
  x(I_open) = 0.0;		# Open switches have zero state
  I = nozeros(!open.*[1:Nx]');	# Indices of states to update
  x(I) = x(I) + dx(I)*dt;	# Update states except open switches.
endfunction;



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