GSim
文件大小: unknow
源码售价: 5 个金币 积分规则     积分充值
资源说明:GSim is a very basic block simulation program. Application is written in Groovy language and is in early pre pre pre alpha stage.
![GSim screenshot](https://raw.github.com/richard-mihalovic/GSim/master/screenshot.png)

Example schema code:

	simulation.startTime = 0.0
	simulation.stopTime = 2*Math.PI
	simulation.timeStep = 0.05

	simulation.schema.with {
		block('sin', 'source.sin', [])
		block('cos', 'source.sin', [phase: Math.PI/2])
		block('target12', 'target.xyscope', [])

		block('target1', 'target.scope', [])
		block('target2', 'target.scope', [])

		connect 'sin:O1', 'target12:I1'
		connect 'cos:O1', 'target12:I2'

		connect 'sin:O1', 'target1:I1'
		connect 'cos:O1', 'target2:I1'
	}

本源码包内暂不包含可直接显示的源代码文件,请下载源码包。