Main Content

Mechanical Rotational Domain

The mechanical rotational domain declaration is shown below.

domain rotational
% Mechanical Rotational Domain

% Copyright 2005-2013 The MathWorks, Inc.

  variables
    w = { 0 , 'rad/s' };
  end

  variables(Balancing = true)
    t = { 0 , 'N*m' };
  end

end

It contains the following variables:

  • Across variable w (angular velocity), in rad/s

  • Through variable t (torque), in N*m

To refer to this domain in your custom component declarations, use the following syntax:

foundation.mechanical.rotational.rotational 

Related Topics