|
[Sponsors] |
November 13, 2006, 10:39 |
Delete a macro
|
#1 |
Guest
Posts: n/a
|
Hi everybody!
Just a short question. Does somebody know how to delete a macro from the 'Define Macro' list? I didn't found it.... Thanks a lot! |
|
November 14, 2006, 01:20 |
Re: Delete a macro
|
#2 |
Guest
Posts: n/a
|
Go to manage micro and delete it then write the *.cas and then start the simulation
|
|
November 14, 2006, 04:31 |
Re: Delete a macro
|
#3 |
Guest
Posts: n/a
|
First, thanks a lot for your help.
Could you tell me where I can find 'manage micro' ? I didn't find it. Please help me, and tell me where I can find it. Thanks. |
|
November 14, 2006, 05:40 |
Re: Delete a macro
|
#4 |
Guest
Posts: n/a
|
Hey in gui it self you can get it follow the way as I sad go to manage micro and delete is that ok or i need to explain in details?
|
|
November 14, 2006, 06:56 |
Re: Delete a macro
|
#5 |
Guest
Posts: n/a
|
So that is the problem. When I type "manage micro" in the gui I get the message "invalid command [manage]". So please tell me the path where I can find manage micro.
Thanks a lot! |
|
November 14, 2006, 14:51 |
Re: Delete a macro
|
#6 |
Guest
Posts: n/a
|
Define>User-Defined>Functions>Manage
|
|
November 15, 2006, 07:21 |
Re: Delete a macro
|
#7 |
Guest
Posts: n/a
|
Deleting macros is not easy an requires some scheme programming. The macros are stored in a list called *cx-macros*. You can print this list with (cx-list-macros) from the TUI. To delete a macro from this list you will first need a new scheme funtion which will do this. The defintition of that function (named "rmm" for remove macro) is
(define (rmm a-list i)(if (= i 1)(cdr a-list)(cons (car a-list)(rmm (cdr a-list) (- i 1))))) To delete the second macro from the list type (rmm *cx-macros* 2) This will not yet delete the macro, it will only print out the new list. You can save the new list with (set! *cx-macros* (rmm *cx-macros* 2)) Or if you want to clean the whole macro list just type (set! *cx-macros* (list)) Hope this helps, RoM |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
how to set periodic boundary conditions | Ganesh | FLUENT | 15 | November 18, 2020 07:09 |
How to delete a macro ? | Anthony Wachs | FLUENT | 1 | January 10, 2011 07:19 |
fluent add additional zones for the mesh file | SSL | FLUENT | 2 | January 26, 2008 12:55 |
Macro Trouble -Winows Explorer Crashes with Macro | Martin Castillo | FLUENT | 1 | July 25, 2007 05:18 |
Macro problem | cfddummy | Siemens | 1 | April 9, 2007 13:37 |