Re: [sympy] Re: Project Idea and Expression of Interest

2024-03-30 Thread Shishir Kushwaha
The Proposal Kindly take a look at the new Phases and the revised timeline ,I have set aside some time for the extended goal which can be used to complete work of other phases in case it was not

Re: [sympy] Re: Project Idea and Expression of Interest

2024-03-30 Thread Shishir Kushwaha
Thank you for the review sir. About the point on the time taken for Phase 2 , the current code included with the proposal was written with a very intuitive approach but I would like to follow similar approaches to the ones used in Beams and Trusses using various inbuilt functions like

Re: [sympy] Re: Improving .subs() method issue

2024-03-30 Thread HAWK
Thank you sangyub for such detailed explanation, I really appreciate it. I think you are right if we implement such algo for .subs(), it will just make things complex. But was thinking that if we could try such things may be it would make way better and I think there is a way to make it work. I

Re: [sympy] Re: Project Idea and Expression of Interest

2024-03-30 Thread Advait Pote
Your proposal seems very detailed and your contributions are good too. One minor change I'd suggest is instead of adding screenshots of your code from your editor, try using any add-ons on Google Docs that enable you to write code. This is purely for presentation purposes though. About the

[sympy] Re: Improving .subs() method issue

2024-03-30 Thread Sangyub Lee
I may give the step-by-step technical explanation why eq.subs works this way: - The subexpressions of x**2 + 5 are x**2, and 5, which is eq.args - The subexpressions of x**2 are x and 2, which is (x**2).args - There are no subexpressions of 5, because 5 is an atom. - There are no subexpressions