How to get induction machine parameters.
조회 수: 5 (최근 30일)
이전 댓글 표시
By using code
options.DisplayDetails = 1;
options.units = 'p.u.';
[params,spec2,errors] = power_AsynchronousMachineParams(spec,options)
When i put torque value spec.Ns = 1500; spec.Nn = 3000 It give error
Error in power_AsynchronousMachineParams (line 32) [varargout{1:nargout}] = power_AsynchronousMachineParams_pr(varargin{:});
How to solve this error
댓글 수: 0
답변 (1개)
Ben Drebing
2017년 12월 19일
To confirm, is the error you are getting?
Error using power_AsynchronousMachineParams_pr
Function 'power_AsynchronousMachineParams_pr' couldn't find a solution.
This is because the inputs you gave to the power_AsynchronousMachineParams function make the optimization problem it has to solve infeasible. Go back through your parameters and make sure that they make sense for the problem you are solving. For instance, you mentioned torque, did you mean to change the spec.Tn parameter?
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Motor Drives에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!