Discrete event simulation is appropriate for systems whose state is discrete and changes at particular time point and then remains in that state for some time. An example of such a system is the number of customers in a post office: The number of customers is discrete (integer) and the number of customers only changes when someone enters the post office or finishes its business at the counter.
Continuous simulation is appropriate for systems with a continuous state that changes continuously over time. An example of such a systems is the amount of liquid in a tank and or its temperature. Such a system can be described by differential equations. Continuous simulation is a technique to solve these equations numerically.
If you are using matlab for your simulation, I would suggest to check the resources in the following link for examples and video tutorials on Predictive Modelling,
Joachim Arts : Notice that DES does not imply that the system state is discrete, but only that state changes are discrete! Therefore, in a discrete event simulation, you can use continuous variables (having floating-point numbers as their values), e.g., the annual revenue of a business. See also https://sim4edu.com/des-models/. Likewise, a continuous simulation may have a combination of discrete and continuous state variables. See also https://sim4edu.com/continuous-models. Masoud Mehrabi koushki
: your simulation problem calls for a hybrid (discrete-continuous) model.