The following example should produce two bursts of Glu of height 5000.
%agent: Glu(x)
%agent: dummy(x)
-> dummy(x) @ 1000
%var: 'gluClearRate' 0.1
%var: 'gluFlux' 50000.0
%var: 'gluCreateRate' 0
# Clear Glu quickly from the cleft with a tau of about 1.3mS
'Glu-Clear' Glu(x) -> @ 'gluClearRate'
'Glu-Create' -> Glu(x) @ 'gluCreateRate'
%obs: 'Glu' Glu(x)
%var: 'durpulse' 0.1 # s
%var: 't1' 5 - 'durpulse'
%var: 't2' 1200 - 'durpulse'
%mod: [T] > 't1' do $UPDATE 'gluCreateRate' 'gluFlux'
%mod: [T] > 't1' + 'durpulse' do $UPDATE 'gluCreateRate' 0
%mod: [T] > 't2' do $UPDATE 'gluCreateRate' 'gluFlux'
%mod: [T] > 't2' + 'durpulse' do $UPDATE 'gluCreateRate' 0
%plot: 'gluCreateRate'
The first pulse is of height 5000. The second, later, one is over 3x taller:

The following example should produce two bursts of
Gluof height 5000.The first pulse is of height 5000. The second, later, one is over 3x taller:
