0

I have made a block in Simulink that calculates some Aerodynamic coefficients.

I had like to use this coefficients in order to define the numerator and denominator of a transfer function.

Is there a way to link between the output from the coefficients block to the transfer function?

Thank you

benb
  • 351
  • 1
  • 2
  • 7

1 Answers1

1

No. The output of your aerodynamic block are signals. The numerator and denominator of the Transfer Function are parameters. You cannot use signals as parameters, or vice-versa.

What you can do is construct your own transfer function using an appropriate arrangement of Sum, Product and Integrator blocks, with the signals from your aerodynamics block being used (typically in conjunction with the Product blocks) to define the appropriate coefficients/gains.

Phil Goddard
  • 10,571
  • 1
  • 16
  • 28
  • Thank you, will try to construct it. – benb Sep 29 '18 at 21:25
  • Or @benb could create their own masked subsystem where the parameters passed to the aerodynamic block are also output from the block. This should be easy to configure. – scotty3785 Oct 02 '18 at 13:08