--
You received this message because you are subscribed to the Google Groups "sympy" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sympy+unsubscribe@googlegroups.com.
To post to this group, send email to sy...@googlegroups.com.
Visit this group at https://groups.google.com/group/sympy.
To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/33e8d677-92c1-4ec8-b956-54690bd65ba9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
In 3 dimensions there are 13 separable (orthogonal) coordinate systems. See link -How many do you want to implement? I would have a coordinate_system class and use it to instantiate a particular coordinate system then when you instantiate a vector space one of the parameters of the vector space instantiation would be the coordinate system. This way you could have different coordinate systems in the same program.For my geometric algebra modules I started with a metric and derived the basis vectors and their derivatives. If you are interested in this method go to -
github.com/brombo/galgebraand look at galgebra.pdf in the doc directory.
On Fri, Sep 30, 2016 at 12:06 PM, Arihant Parsoya <parsoya...@gmail.com> wrote:
Hi All,I wanted to work on the idea of Multiple Coordinate Systems. Previously I submitted my PR for the same here. The old PRs related to this idea uses Lame` coeffecients whereas the GSOC ideas page says that there needs to be multiple classes for each coordinate system. Can anyone guide me on whats the right approach implement this idea?Thanks,Arihant Parsoya
--
You received this message because you are subscribed to the Google Groups "sympy" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sympy+un...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to sympy+unsubscribe@googlegroups.com.
To post to this group, send email to sy...@googlegroups.com.
Visit this group at https://groups.google.com/group/sympy.
To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/17f37430-8b04-48b8-9c5f-6bf4a60e6163%40googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to sympy+unsubscribe@googlegroups.com.
To post to this group, send email to sy...@googlegroups.com.
Visit this group at https://groups.google.com/group/sympy.
To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/52d3bb5a-3d67-4795-a37e-f02706ebc3a5%40googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "sympy" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sympy+unsubscribe@googlegroups.com.
To post to this group, send email to sy...@googlegroups.com.
Visit this group at https://groups.google.com/group/sympy.
To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/7d1971ba-3411-4e84-820a-8d7789d48459%40googlegroups.com.
CoordinateSystem (Super class for remaining coordinate systems), CartesianCoordinateSystem and SphericalCoordinateSystem using Metric and Lamè coeffecients here. Can you review it?Look at my notes. They may be sufficient.
On Mon, Dec 12, 2016 at 12:32 AM, Sourabh Garg <sourabh.8...@gmail.com> wrote:
Hey,I also want to work on it. if you have any link to book's pdf version ,please share with me.ThanksSourabh Garg
--
You received this message because you are subscribed to the Google Groups "sympy" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sympy+un...@googlegroups.com.
To post to this group, send email to sy...@googlegroups.com.
Visit this group at https://groups.google.com/group/sympy.
Hi Brombo,Can you suggest some API specification for the new coordinate system?