Krishna Akella
Followers: 0 Following: 0
Statistik
0 Fragen
46 Antworten
RANG
896
of 295.448
REPUTATION
82
BEITRÄGE
0 Fragen
46 Antworten
ANTWORTZUSTIMMUNG
0.00%
ERHALTENE STIMMEN
6
RANG
of 20.227
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANG
of 153.872
BEITRÄGE
0 Probleme
0 Lösungen
PUNKTESTAND
0
ANZAHL DER ABZEICHEN
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Set multiple attributes in entity generator block
Also, there is an artificial limitation in the UI of the Entity Generator block, that does not allow adding more than 31 attribu...
4 Monate vor | 0
How do you read an attribute from one part of a composite entity
Hi Mats, Entity Selector block is expected to work with both composite entities as well as batched entities. I think the attrib...
fast 4 Jahre vor | 0
Why SimEvents spends so much time
Hi Gul, I agree with Abdolkarim's suggestion. Did you try to put the model in 'fast restart' mode? That will ellimiate model co...
fast 4 Jahre vor | 0
My Simevents simulation data labels are showing as inaccessible (this didn't happen in older versions). The data shows and is being captured if I look in the scope the scope. How do I get round this?
Hi Andrew, Which version of MATLAB/Simulink are you using? Thanks & regards, Krishna
fast 4 Jahre vor | 0
SimEvents: What is the correct usage of testEntry?
Hi Abdolkarim, From what you have described, both (a) and (b) are correct. To summarize: The event testEntry explicitly tells ...
fast 4 Jahre vor | 0
SimEvents: Which entity type should event actions be assigned to? Invoker type or target type?
Hi Kar, The testEntry method is invoked before an entity enters a storage. This method allows to either accept or refuse an ent...
mehr als 5 Jahre vor | 0
| akzeptiert
Forward and Inverse Kinematics for robot
Hi Mohsina, I don't know the answer to your question but I looked at your model and I have a few observations. In your model I ...
mehr als 5 Jahre vor | 0
I am working on queueing using Simulink Sim Events, and I need help on adding an attribute to the events.
That sounds strange. The service completion action must be called when the server is finished serving an entity. There should b...
mehr als 5 Jahre vor | 0
How to create bus object within MATLAB discrete-event system, without having to load it in workspace?
Hi Kar, Are you looking for something like this? https://www.mathworks.com/help/simulink/ug/create-bus-objects-programmaticall...
mehr als 5 Jahre vor | 0
| akzeptiert
Simevents: change the server capacity during simulation
Hi Kar, You are correct, Entity Server does not allow for changing the capacity at run-time. Resource Pool block allows changin...
mehr als 5 Jahre vor | 0
| akzeptiert
Is there more documentation or examples on SimEvents observer?
Hi Kar, There are a couple of examples that illustrate the use of SimEvents observer. If you are using R2017b or later, there i...
mehr als 5 Jahre vor | 0
| akzeptiert
Simevents discrete-event system documentation does not include some of variable-input syntaxes
Hi Kar, Unfortunately, to my knowledge, there isn't an easy way to infer the optional arguments. However, the way I infer the o...
mehr als 5 Jahre vor | 0
| akzeptiert
I am working on queueing using Simulink Sim Events, and I need help on adding an attribute to the events.
Hi Biplav, Have you tried using SimEvents blocks for this? With simEvents you can use an 'Entity Generator' block and a 'Entity...
mehr als 5 Jahre vor | 1
| akzeptiert
SimEvents: Is it possible to generate an event-based entity with specific attribute values defined in the caller block's event action?
Hi Kar, Unfortunately, the entity generator's 'Generate' event action cannot use the values from the generation triggering enti...
mehr als 5 Jahre vor | 0
| akzeptiert
On Off switch simulink
Hi VM, If I understand correctly, you are trying to model a machine going on a break for scheduled maintenance or some thing li...
mehr als 5 Jahre vor | 0
Conveyor Modelling - material handling
Hi Michael, That's a very interesting problem! You want to model "continous" material instead of lumped material, flowing on a ...
mehr als 5 Jahre vor | 0
How can I trigger an event in a Discrete-Event Chart based on the continous signal value?
Hi Nemanja, Have you tried using 'Message Send' and 'Message Receive' blocks? These blocks can be used to interface continuous ...
mehr als 5 Jahre vor | 0
| akzeptiert
Resource acquire block programmatic use
Hi Marco, To know the BlockType of any block, add the block to a model and select it. Then in MATLAB window, type the following...
mehr als 5 Jahre vor | 1
| akzeptiert
Non-constant Batch Size
Hi Alex, In an entity generator you can set the 'Time source' to be 'MATLAB action' and then manipulate the output value 'dt' (...
mehr als 5 Jahre vor | 0
I need an entity gate that I can open and close based on an entity attribute.
Hi Andrew, The easiest way to do this is to use the 'Simulink Function' block and call the Simulink function from an event acti...
mehr als 5 Jahre vor | 0
| akzeptiert
how to set up a entity gate to open and close based on situations encountered?
Hi Rita, I assume 'A', 'B' and 'C' are SimEvents blocks. In which case, you can use the statistics signals from 'A', 'B' and 'C...
mehr als 5 Jahre vor | 0
SimEvents and Exporting Complete Event Information
Hi Noel, Sure, you can. Since its event data, I assume you want to export the information as a timeseries. You can use the simu...
fast 6 Jahre vor | 1
| akzeptiert
simEvents cache model and simulation
Hi Luis, There is no example that I know of which simulates the behavior of an MMU. I think using SimEvents in conjunction with...
fast 6 Jahre vor | 0
| akzeptiert
How can I pass in an rng(seed) into a call to sim(...), as below (SimEvents model):
Hi Elliot, As an alternative to adding coder.extrinsic('rand') to all the blocks, one can also setup a global simulink function...
fast 6 Jahre vor | 0
How can I pass in an rng(seed) into a call to sim(...), as below (SimEvents model):
Hi Elliot, You are correct! Your solution works correctly! I have identified what was happening and here is what is happening:...
fast 6 Jahre vor | 0
Set multiple attributes in entity generator block
Hi Marco, The different attribute names and their initial values are delimited by the pipe symbol. For example if you want to a...
fast 6 Jahre vor | 0
| akzeptiert
Building Simevents model with Matlab code. Setting the output switch 'number of ports' parameter.
Hi Marco, If you are trying to set the 'Number of output ports', have you tried the following instead: add_block('built-in/ent...
fast 6 Jahre vor | 0
| akzeptiert
How can I pass in an rng(seed) into a call to sim(...), as below (SimEvents model):
Hi Elliot, I am glad you were able to solve your problem. I am trying to understand your solution and I tried adding the code ...
fast 6 Jahre vor | 0
How can I pass in an rng(seed) into a call to sim(...), as below (SimEvents model):
Hi Elliot, It seems like the random number generator is unique to each block and the default seed is 0. Setting rng(5) on the c...
fast 6 Jahre vor | 0
Can A Multicast Sender send to a tag which is dynamically determined from an attribute in the entity which it is sending?
Hi Elliot, I think I don't understand your question well. I have attached a model based on what I understood. Where entity.type...
fast 6 Jahre vor | 0