Generative Design Python Script Node Issues

Hi everybody, I tries to creat a generative design study, when I set Graph Type for this I have meet a Node issues that:
These nodes are revit dependent and therefore need to be cached. nodes that needs to be cached cannot be placed in a evaluation loop ( after an input node and before an output node), Remove the nodes that occur in the evalutation loop.
Can someone explain to me the reason behind this message and how to fix it.
Thank you very much!


my script in the link below

Generative Design doesn’t have any access to the Revit API, and as such you need to make the graph execute correctly in Dynamo Sandbox by converting all Revit data into a simplified data type and serializing it into a Data.Remember node. Any nodes which record the final output need to go after a Data.Gate node.

All the variation in outcome and evaluation needs to happen between the Data.Remember and the Data.Gate node.

1 Like

hi Jacob, thank for your answer, I tried to do geometry operations only in dynamo sandbox as you can see in my node python script i am not clear where i did wrong.

Can’t really see your code as you only posted a screenshot, but I do see a reference to the Document manager, which requires the Revit access and therefore won’t work in Sandbox. Even if you don’t use a method but import a Revit class it will fail.

Try running your code in Dynamo Sandbox and the Revit API calls will be made quite clear.

1 Like

Thanks you. I will try it

1 Like

I removed the revit related library import lines and it worked, thank you

1 Like

I just have another issue, when I running the script in dynamo it still return Output and geometry preview


But when I ran it in generative design, no output value and no preview geometry is returned. Can you explain to me what happened?

Do the same inputs return results in Dynamo Sandbox? If not, then whatever is preventing the outcome there is likely the issue for GD.

If so it could be parallel processing issues, exceeding the memory limit, or an external dependency failing.

Would need the graph posted for anyone in the community to review. Personally I won’t have time until after my vacation, and then I’ll need to clear the backlog for my day job first.

I just tried it and results are the same :smiley: It worked perfectly in Sandbox but still have problem with GD

BikeParking Layout-0.6.dyn (168.0 KB)
this my script, please help me check it when you come back