586,455 active members*
3,245 visitors online*
Register for free
Login
IndustryArena Forum > CAM Software > GibbsCAM > Compost Custom Coolants
Results 1 to 6 of 6
  1. #1
    Join Date
    Mar 2006
    Posts
    158

    Compost Custom Coolants

    Does any one know how to query a custom coolant in Compost?
    I created a new MDD for a machine with 4 coolant options, two of which did not fit the 6 standard options available in Compost.

    Thanks in advance,

    Scott

  2. #2
    Join Date
    Aug 2006
    Posts
    131
    Quote Originally Posted by sld4121 View Post
    Does any one know how to query a custom coolant in Compost?
    I created a new MDD for a machine with 4 coolant options, two of which did not fit the 6 standard options available in Compost.

    Thanks in advance,

    Scott
    What do you mean by "Do not fit the standard"?
    "Teach the ignorant, care for the dumb, punish the stupid."

  3. #3
    Join Date
    Mar 2006
    Posts
    158
    In the MDD editor, the coolants drop down allows for 6 coolants that are pre-defined keywords.
    They are Flood, Mist, Thru Spindls, Hi Pressure, Pulse, and Flood Thru Spindle.
    Additionally, the drop down box contains allowances for 14 additional "custom coolants" - labelled Custom1 through Custom14.
    These, or any of the coolants can be called by whatever name you choose by checking custom name in the MDD editor.
    In my case, the machine I am working on has spindle through air as well as an external air blow which "do not fit the standard keywords"
    Certainly, I can use the standard keywords, and lie to the post, but I would rather not.
    My issue is, how do I query "Custom1" - "Custom14" in the post.

  4. #4
    Join Date
    Aug 2006
    Posts
    131
    Presuming you got the MDD working so the custom coolants are available in gibbs. (something I can't get working right :)).

    In the post where you do a "CoolOn" and/or "CoolOff" you will need to branch to these booleans. They determine what coolant option is selected in gibbs and what coolant type is turned on currently in case they have a different MCODE then M09.


    doCoolOn:
    IF ThruSpin?
    'M12'
    Save# Num#('22') Num#('1')
    ELSE
    IF HiPressure? { Air }
    'M12'
    Save# Num#('22') Num#('2')
    ELSE
    IF FloodThruSpin?
    CoolOn EOL
    SeqC 'M12'
    Save# Num#('22') Num#('3')
    ELSE
    IF Pulse? { Flood and Air }
    CoolOn EOL
    SeqC 'M51'
    Save# Num#('22') Num#('4')
    ELSE { Flood }
    CoolOn
    Save# Num#('22') Num#('0')
    END
    END
    END
    END
    RETURN

    doCoolOff:
    IF Equal? Recall# Num#('22') Num#('1')
    'M09'{WAS M89}
    ELSE
    IF Equal? Recall# Num#('22') Num#('2')
    'M09'{WAS M59}
    ELSE
    IF Equal? Recall# Num#('22') Num#('3')
    CoolOff EOL
    SeqC 'M09'{WAS M89}
    ELSE
    IF Equal? Recall# Num#('22') Num#('4')
    CoolOff EOL
    SeqC 'M09'{WAS M59}
    ELSE
    CoolOff
    END
    END
    END
    END
    RETURN
    "Teach the ignorant, care for the dumb, punish the stupid."

  5. #5
    Join Date
    Aug 2006
    Posts
    131
    sld4121 figured it out in a series private messages. I'm posting here for the benefit of the group.

    The book makes reference to:

    ExtraCoolant?

    "This command will return true if the current
    operation’s coolant is of the type
    “CustomCoolantN” in the MDD, where “N” is a
    number from 1 to 14. This allows for the MDD
    to have more then the normal six coolant types
    (20 total types).

    sld4121 Wrote:

    Got it!
    ExtraCoolant? put me over the hump.

    Here is what you need.........

    IF ExtraCoolant? Num#'1'




    So by adding additional loops to the subroutines doCoolOn: and doCoolOff: then invoking them throughout your post you can add coolant options.
    "Teach the ignorant, care for the dumb, punish the stupid."

  6. #6
    Join Date
    Mar 2006
    Posts
    158
    As an addendum, you can also use the following

    IF ExtraCoolant? ('1')

Similar Threads

  1. Compost 2 versus Compost 3
    By joe7sch in forum GibbsCAM
    Replies: 0
    Last Post: 04-28-2011, 01:37 PM
  2. Great Coolants
    By coolantman in forum News Announcements
    Replies: 0
    Last Post: 06-26-2009, 04:18 PM
  3. Good Coolants
    By coolantman in forum News Announcements
    Replies: 2
    Last Post: 05-15-2009, 06:23 PM
  4. Coolants
    By coolantman in forum News Announcements
    Replies: 0
    Last Post: 03-18-2009, 05:26 AM
  5. coolants
    By jprobst in forum Haas Mills
    Replies: 1
    Last Post: 09-29-2007, 12:35 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •