You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm new to Pynite (and github) so not sure how to do this so I apologize if I'm missing something.
I've installed the library and successfully have run Simple Beam-Point Load.py.
Rendering and graphs are working fine.
Terminal output is correct.
PDF report shows Nodes, Members and Member end releases correctly, but Node Reactions, Node Displacements and Member Forces are displaying the headings but no content.
I've traced the code to Reporting.py and the section where you pass the dictionaries to the report template. Looking at the Report_Template.html, I see references to load_combos but they havent been passed to jinja2.
If I add the following line to Reporting.py line 60 before the template.render call, the pdf report shows all values correctly:
kwargs['load_combos'] = model.load_combos
Without the load_combos, the template can't iterate through them.
Love the program and would like to learn how to contribute!
Paul Asp
The text was updated successfully, but these errors were encountered:
I'm new to Pynite (and github) so not sure how to do this so I apologize if I'm missing something.
I've installed the library and successfully have run Simple Beam-Point Load.py.
Rendering and graphs are working fine.
Terminal output is correct.
PDF report shows Nodes, Members and Member end releases correctly, but Node Reactions, Node Displacements and Member Forces are displaying the headings but no content.
I've traced the code to Reporting.py and the section where you pass the dictionaries to the report template. Looking at the Report_Template.html, I see references to load_combos but they havent been passed to jinja2.
If I add the following line to Reporting.py line 60 before the template.render call, the pdf report shows all values correctly:
kwargs['load_combos'] = model.load_combos
Without the load_combos, the template can't iterate through them.
Love the program and would like to learn how to contribute!
Paul Asp
The text was updated successfully, but these errors were encountered: