LOG - JULY 10th
Read up on the concepts required for the grid implementation. Added numerical integration to the code. Depending on the step count( number of terms) ,performance and accuracy required the code chooses the most optimum one suited for the purpose at hand.
Commits :
https://github.com/1sand0s/Inter_Haptics/commit/4ca5fc5fa3a42b2df267d63afdb12ae493753a8d
Commits :
https://github.com/1sand0s/Inter_Haptics/commit/4ca5fc5fa3a42b2df267d63afdb12ae493753a8d
https://github.com/1sand0s/Inter_Haptics/commit/21a998d8a289d498250cdefc8a246337c202283f
https://github.com/1sand0s/Inter_Haptics/commit/a376edc34eba6c12e5221f51c961500a49fb9460
https://github.com/1sand0s/Inter_Haptics/commit/df8e8b1934c8a1d35cca3725ecaf0ea32dd19c91
https://github.com/1sand0s/Inter_Haptics/commit/5fcde6edbbdfcc91d971327491c737f68cb3baa2
https://github.com/1sand0s/Inter_Haptics/commit/a32fce3c4039d0c463e4642bed9623e1358ec654
https://github.com/1sand0s/Inter_Haptics/commit/613f5d4eeb456abb177ffc86a86171d8d9f2887a
https://github.com/1sand0s/Inter_Haptics/commit/fed2b1f5e62a7c86255268efdf07172f2989c63d
https://github.com/1sand0s/Inter_Haptics/commit/134642b76b7277b0738c0c12c3dfde3724b49680
deal with the implementation of the numerical integration .
https://github.com/1sand0s/Inter_Haptics/commit/a376edc34eba6c12e5221f51c961500a49fb9460
https://github.com/1sand0s/Inter_Haptics/commit/df8e8b1934c8a1d35cca3725ecaf0ea32dd19c91
https://github.com/1sand0s/Inter_Haptics/commit/5fcde6edbbdfcc91d971327491c737f68cb3baa2
https://github.com/1sand0s/Inter_Haptics/commit/a32fce3c4039d0c463e4642bed9623e1358ec654
https://github.com/1sand0s/Inter_Haptics/commit/613f5d4eeb456abb177ffc86a86171d8d9f2887a
https://github.com/1sand0s/Inter_Haptics/commit/fed2b1f5e62a7c86255268efdf07172f2989c63d
https://github.com/1sand0s/Inter_Haptics/commit/134642b76b7277b0738c0c12c3dfde3724b49680
deal with the implementation of the numerical integration .
1. Trapezoidal
Best suited for small step counts and generally when the stress is on performance rather
than accuracy. Approximates the function curve using trapezoids.
2. Simpson's 1/3
Best suited when the step count is even. Greater accuracy than that computed using trapezoidal.
Approximates the function curve using quadratic polynomials(parabolas).
3. Simpson's 3/8
Best suited when the step count is multiple of 3. Greater accuracy than that of trapezoidal.
Approximates the function curve using cubic polynomials.
No comments:
Post a Comment