How do I generate a variable in work space for the sample time which Simulink uses for simulation to be used in a code?

clc
format short
%tout: a vector of number. The below removes numbers that are not multiple of 0.00005
tol = 1e-14; %abritrary tolerance below which numbers are considered equal
tout(abs(mod(tout, 0.00005)) > tol) = [];
tout = unique(tout);
NS1 = size(tout); % to find the number of samples
NS2=NS1(1,1);
FileName = input('Please enter a file name:', 's');
FN_cfg = [FileName,'.cfg'];
FN_dat = [FileName,'.dat'];
Data =[transpose((1:1:NS2)) tout M];
csvwrite(FN_dat,Data)
i want to get the sample time which simulink use in
tout(abs(mod(tout, 0.00005)) > tol) = [];
in place of 0.00005 so that it will become user defined and not hard coded value.
can anyone help me with this?

Answers (1)

It is my understanding that you are trying to find the number of samples based on the Solver sampling time of the Simulink model. You would like to get this sample time from what is set in the model, rather than fixing it to particular value.
What you can do is:
1. Get the sample time of model using the function "get_param". This returns a character array.
2. Convert it to a numeric value and use it in the code.
Your code might look similar to the below piece of code:
SampleTime = str2num(get_param(<Model Name>,'FixedStep')); % Get solver sample time and convert it to number
Use the variable "SampleTime" in place of 0.00005.
Hope this helps!

3 Comments

when used the code line as you mentioned above it gave the error as mentioned in the above picture.
SampleTime = str2num(get_param(<Model Name>,'FixedStep')); % Get solver sample time and convert it to number
<Model Name> isn't recognised by the MATLAB. How to solve the above problem?
also why fixedstep is used? i am using variable step. and so i amde the required changes and its still showing the same problem as above
<Model Name> should be replaced by your model name.
e.g. if you have named your model as "Example_model.slx" then the command would look like below
SampleTime = str2num(get_param(Example_model.slx,'FixedStep')); % Get solver sample time and convert it to number
When you use variable step, the simulink sample time is not fixed. You can refer to the documentation page. It explains how to chose solvers.
but sir i don't want to change the model name each time i run the code for different models. is there a way that the model name will be selected directly when required?

Sign in to comment.

Categories

Find more on Simulink in Help Center and File Exchange

Products

Release

R2019b

Asked:

on 11 Feb 2020

Commented:

on 25 Feb 2020

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!