SimSharp 3.4.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package SimSharp --version 3.4.1
NuGet\Install-Package SimSharp -Version 3.4.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SimSharp" Version="3.4.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SimSharp --version 3.4.1
#r "nuget: SimSharp, 3.4.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install SimSharp as a Cake Addin
#addin nuget:?package=SimSharp&version=3.4.1

// Install SimSharp as a Cake Tool
#tool nuget:?package=SimSharp&version=3.4.1

Sim# aims to port the concepts used in SimPy (https://pypi.python.org/pypi/simpy) to the .NET world. It is implemented in C# and builds on the .NET Framework 4.5 / .NET Standard 2.0. Sim# uses an efficient event queue (adapted from https://github.com/BlueRaja/High-Speed-Priority-Queue-for-C-Sharp). The MachineShop benchmark comes close to 3.5 million events per second on a Core i7-7 2.7Ghz.

Sim# allows modeling processes easily and with little boiler plate code. A process is described as a method that yields events. When an event is yielded, the process waits on it. Processes are themselves events and so it is convenient to spawn sub-processes that can either be waited upon or that run next to each other. There is no need to inherit from classes or understand a complex object oriented design.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.5

    • No dependencies.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on SimSharp:

Package Downloads
Rnsm.BookingSimulation

包含售票仿真,分析功能。

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.4.2 3,011 6/9/2023
3.4.1 6,674 2/8/2022
3.4.1-pre2 515 2/4/2022
3.4.1-pre1 571 2/4/2022
3.4.0 750 1/12/2022
3.3.2 9,246 5/4/2020
3.3.1 962 2/21/2020
3.3.0 1,343 12/6/2019
3.2.0 12,200 9/1/2019
3.1.1 1,594 1/4/2019
3.1.0 1,268 12/17/2018
3.0.11.1 1,300 6/26/2018
3.0.10 1,738 9/27/2017
3.0.9 1,529 3/23/2016
3.0.8 1,563 8/21/2015
3.0.7 1,585 3/1/2015
3.0.5 1,516 9/14/2014
3.0.4 1,430 8/25/2014

Sim# 3.4.1 adds source links to the NuGet package.
   
   Sim# 3.4 contains two enhancements, two bug fixes, and some deprecations.
   
   Enhancement
   1) Adds implementations of sampling from distributions in form of classes and an IDistribtion interface.
   2) Added sampling from Erlang distributions
   
   Bug fixes - it fixes two bugs in the Simulation class
   1) The supplied instance of the random number generator was ignored in the RandChoiceOnline<T> methods.
   2) The parameters alpha and beta for the Weibull distribution have been reversed (alpha is now shape and beta is scale)

   Deprecations
   1) All of the RandXXX methods in class Simulation have been marked as obsolete.
   2) All of the random TimeoutXXX methods in class Simulation have been marked as obsolete.

   To port code, it is advised to add "using static SimSharp.Distributions" to the using section and change e.g.
   env.RandUniform(1, 2) to env.Rand(UNIF(1, 2))
   env.RandNormalPositive(3, 0.5) to env.Rand(POS(N(3, 0.5)))
   env.RandLogNormal(1, 2) to env.Rand(LNORM(1, 2))
   env.RandLogNormal2(1, 2) to env.Rand(LNORM2(1, 2))
   etc.
   env.TimeoutUniformD(1, 2) to env.TimeoutD(UNIF(1, 2))
   env.TimeoutLogNormalD(1, 2) to env.TimeoutD(LNORM(1, 2))
   env.TimeoutLogNormal2D(1, 2) to env.Timeout(LNORM2(1, 2))
   etc.
   The RandChoice methods have been replaced with EmpiricalUniform and EmpiricalNonUniform distributions.

   All distributions also provide a static sampling method.

   The big improvement is that your process may be declared without needing to determine the actual random distribution.
   Thus Sim# 3.4 makes it simpler to parameterize processes with specific distributions.

   Distributions are lightweight classes, but Normal and LogNormal do contain state information as these use a cached
   value from the Marsaglia polar method. In case you reuse distribution instances among simulation runs you should
   call Reset() on all distribution instances of type IStatefulDistribution.