www.gusucode.com > MFeval 工具箱matlab源码程序 > MFeval/MFeval/+mfeval/Solver62.m

    classdef Solver62 < mfeval.Solver61
    %SOLVER62 Solver for Magic Formula 6.2 Tyre Model
    % 
    % All the calculations for MF6.2 are the same as for MF6.2 except for
    % the loaded radius, vertical deflection and vertical stiffness.
    
    methods (Hidden)
        % This methods are public but they are hidden for the normal user
        
        function [rho_z, Rl, Cz] = calculateRhoRl(~, tirParams, postProInputs, forcesAndmoments, dpi, omega, Romega)%#codegen
            
            % To be developed in the future
            rho_z = 1;
            Rl = 2;
            Cz = 3;
            
        end % calculateRhoRl
        
    end % Hidden
    
end % Classdef