ressistors with small random offset in SIMULINK

3 visualizaciones (últimos 30 días)
fima v
fima v el 27 de Mayo de 2020
Comentada: Walter Roberson el 8 de Jun. de 2020
Hello , I want to have 10 resistors with a littles offset in resistance by random number arounk 1kohm
i have itried to use matlab simuling VAriable ressistor.
But i dont see how i enter there some random offset in the value.
Thanks.
  11 comentarios
Walter Roberson
Walter Roberson el 28 de Mayo de 2020
I am having difficulty finding resistors in pure simulink. I find resistors in
  • RF Blockset
  • Simscape Electrical
  • Specialized Power Systems
fima v
fima v el 28 de Mayo de 2020
Hello Wolter , i am not sure regarding what exact simulink i am using, ithink i have here RF blockset.
could you please say on this platform how to define random argument in the resistor value?
Thanks.

Iniciar sesión para comentar.

Respuesta aceptada

Walter Roberson
Walter Roberson el 29 de Mayo de 2020
Editada: Walter Roberson el 29 de Mayo de 2020
The attached model is adapted (solver parameters updated) from the File Exchange Contribution
SERIES AND PARALLEL CIRCUITS, version 1.0.0, by Chaitanya Jambotkar
It happens to have 11 resistors from Specialized Power Systems (part of Simscape Electrical)
The resistances can be randomized using
for K = 1 : 11
pn = sprintf('SERIES_PARALLEL_RESISTORS/R_%d', K);
set_param(pn, 'Resistance', sprintf('%.5g', 1000 + randn(1)));
end
Here, SERIES_PARALLEL_RESISTORS is the model name, and each of the resistors happened to be named R_ followed by a number. Resistance is the name of the parameter used in SPS for resistance (some of the other forms of resistor in Simulink use 'R' as the name for the resistance.)
It was saved with R2020a (you did not indicate which version you are using.)
  20 comentarios
fima v
fima v el 5 de Jun. de 2020
Editada: fima v el 5 de Jun. de 2020
Hello Walter, My comperator needs to have input noise 10nV/sqrt(Hz), bandwidth(100MHZ) ,amplitude(200) , the theshhold of the comperator is 0.6v.
VDD=1V VCC=0V .
so if for example (V_plus-V_minus)*Amplitude>0.6 the output is 1V else 0V.
I have tried to used the simscape bandlimited component to achieve those properties.
but then i couldnt connect with the other components as shown above.
If you could make N such comparators , it would be great.
Thanks you very much.
Walter Roberson
Walter Roberson el 8 de Jun. de 2020
There does not appear to be any one block to implement what you describe. See however https://www.mathworks.com/help/physmod/sps/examples/op-amp-with-noise.html

Iniciar sesión para comentar.

Más respuestas (1)

Fangjun Jiang
Fangjun Jiang el 27 de Mayo de 2020
Editada: Fangjun Jiang el 28 de Mayo de 2020
This "Variable Resistor" is not the right one to use. This "Variable Resistor" represents a physical variable resistor in the lab where you can move a handle or turn a knob to adjust the value of the resistor. The "PS" port of this block can be connect to a motor (for example) to move the handle or turn the knob thus change the resistor.
To implement what you want, you just need to set "R=10e3-10+20*rand(10,1)" in workspace and drop 10 regular resistor blocks in your model, set the parameter for the first resistor to be R(1), ... and the last one to be R(10).
  1 comentario
fima v
fima v el 28 de Mayo de 2020
could you please show a print screen of "R=10e3-10+20*rand(10,1) in workspace"?
and drop 10 resistors.i am having trouble visualise it.
Thabks.

Iniciar sesión para comentar.

Categorías

Más información sobre Detect and Diagnose Faults en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by