PDA

View Full Version : Problem (glish)



jetpr
- 20th January 2007, 13:02
while (CurrentStepl < CurrentStep)
CurrentStepl = CurrentStepl + 1
if (CurrentStepl > 100) or (CurrentStepl=255) then goto FF3
if (PumpDC < 50) then 'Some time glish and go more > 53
PumpDC = (MathSet * CurrentStepl + PumpDcSet)
Pause PauseScalefactor
endif
wend

If some one have see this before.

Acetronics2
- 20th January 2007, 13:31
Hi, Jetpr

Seems your fuel pump still doesn't work as expected ... you might try glow engines, they're much closer to your skills ( LOL !!! ).

your lines are really chinese talking !!! ... as always been.

Alain

sayzer
- 20th January 2007, 15:53
I am trying to understand what the Glish is and thus what the question is asking.


http://www.dictionary.com

"Glish is an interpretive language for building loosely-coupled distributed systems from modular, event-oriented programs. Written by Vern Paxson . These programs are written in conventional languages such as C, C++, or Fortran.

Glish scripts can create local and remote processes and control their communication. Glish also provides a full, array-oriented programming language (similar to S) for manipulating binary data sent between the processes.

In general Glish uses a centralised communication model where interprocess communication passes through the Glish interpreter, allowing dynamic modification and rerouting of data values, but Glish also supports point-to-point links between processes when necessary for high performance."


Did not get it quite right :'(
--------------------

jetpr
- 20th January 2007, 17:01
sorry forgive my bad interpretation.

i am working with a watter pump for a robot with hydraulic..

while (CurrentStepl < CurrentStep)
CurrentStepl = CurrentStepl + 1
if (CurrentStepl > 100) or (CurrentStepl=255) then goto FF3
if (PumpDC < 50) then 'Some time get crazy and go more > 53
PumpDC = (MathSet * CurrentStepl + PumpDcSet)
Pause PauseScalefactor
endif
wend

If some one have see this before.

sayzer
- 20th January 2007, 18:30
jetpr,

What are you asking in that piece of code?

What do you need to know, learn, do?

Details, schematics, questions?

Acetronics2
- 20th January 2007, 20:00
jetpr,

What are you asking in that piece of code?

What do you need to know, learn, do?

Details, schematics, questions?


Hi, Sayzer

Keep cool ... Jetpr is a very old friend of us ...

always impossible to understand him !!!

...

Alain

skimask
- 21st January 2007, 08:30
sorry forgive my bad interpretation.

i am working with a watter pump for a robot with hydraulic..

while (CurrentStepl < CurrentStep)
CurrentStepl = CurrentStepl + 1
if (CurrentStepl > 100) or (CurrentStepl=255) then goto FF3
if (PumpDC < 50) then 'Some time get crazy and go more > 53
PumpDC = (MathSet * CurrentStepl + PumpDcSet)
Pause PauseScalefactor
endif
wend

If some one have see this before.

I might see a little bit of something...
That line: PumpDC = (MathSet * CurrentStepl + PumpDcSet)
Maybe it needs another set of parenthesis? Maybe like this instead:
PumpDC = ( ( MathSet * CurrentStepl ) + PumpDcSet ) or
PumpDC = ( MathSet * ( CurrentStepl + PumpDcSet ) )

I'm just guessing though since info is a bit sparse...