'Error in default port dimensions function of S-function', 'This function does not fully set the dimensions of output port 2'

23 vues (au cours des 30 derniers jours)
Hi there, I have created a manoeuvring prediction code and am trying to just read an excel document within the matlab function. The errors 'Error in default port dimensions function of S-function', 'This function does not fully set the dimensions of output port 2' come up when I try to do this. It works perfectly fine when I just input the coefficients and parameters in manually, but I want the user to just be able to use an excel sheet to put in their variables for this code.
Does anyone know how I can get this to work?
Sorry for the lack of knowledge, I'm not exactly a Matlab wizard.
Thanks in advance.
  8 commentaires
Divya Gaddipati
Divya Gaddipati le 9 Août 2019
Could you attach the script for reading the excel file as well?
Michael Dunn
Michael Dunn le 11 Août 2019
I have attached it. Just to clarify, this script is not the issue at all. I can import any values from the excel sheet fine using this script, so there is not issue with that. I simply desire to import the excel values within the function as previously described.
Thanks.

Connectez-vous pour commenter.

Réponses (2)

Divya Gaddipati
Divya Gaddipati le 12 Août 2019
In line 50 of your ManoeuvringCode.m, the variable X_u is defined as an expression which is present in your excel sheet in row 45 as well. When you are reading your excel file using xlsread, it is extracting that expression as NaN. Hence, your output port 2, which is v_dot is not defined properly as it depends on X_u, which could be NaN in some cases (u >= 0.1). Try defining X_u in the code itself and not from the excel.
  8 commentaires
Walter Roberson
Walter Roberson le 15 Août 2019
It just might help to use block parameters or an initial conditions block to initialize all the values that you GOTO into the function.
Michael Dunn
Michael Dunn le 15 Août 2019
I apologise for my lack of knowledge, but I am unsure how I would do this. Would I complete this in the Simulink model or within the MATLAB function?

Connectez-vous pour commenter.


Michael Dunn
Michael Dunn le 14 Août 2019
I think I have not communicated something correctly. In the excel sheet I have provided, the coefficients 'Y_dr', K_dr', N_dr', etc. are shown. The user is required to provide the coefficients only, not as a formula. The MATLAB code will use this numeric constants to define the formula by multiplying them by their respective velocities. I have attached an updated script that shows what I mean with this. This script works perfectly by itself, but I cannot put it into the 'AUV_mathemanical_model_ver7.slx', it simply does not work within this and runs the error as shown previously.

Catégories

En savoir plus sur Programmatic Model Editing dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by