BEST代写-线上编程学术专家

Best代写-最专业靠谱代写IT | CS | 留学生作业 | 编程代写Java | Python |C/C++ | PHP | Matlab | Assignment Project Homework代写

C++代写|EECS 4491/5391: Assignment 2

C++代写|EECS 4491/5391: Assignment 2

这是一个加拿大C++代写OpenGL的assignment

 

Part1: Spring Mass system [Marks 25]

Develop a spring mass system and a corresponding simulator that support an arbitrary number of particles. The particles can be connected with springs in arbitrary ways and are subject to gravity. There is a flat ground oriented along the y-axis that you should model using penalty forces. The simulator should support the following integration methods: Forward Euler,Symplectic Euler, and Verlet.

You must implement the interface commands below. None of these commands need to work after the user has started the simulation. Additionally, during grading these commands will only be called (during a particular invocation of the application) in the order in which they are given here.

1. system <sys_name> dim <Number of Particles>

This command initializes the particle system to hold up to the given number of particles.

Particles may be initialized to the origin of the world, or may not appear until added by the next command.

2. system <sys_name> particle <index> <mass> <x y z vx vy vz>

This command sets a position, mass and velocity for a given particle.

3. system <sys_name> all_velocities <vx vy vz>

This command sets the velocity of all particles.

4. simulator <sim_name> link <sys name> <Number of Springs>

This links the simulator to a particular particle system, and initializes it to work with a given number of springs.

5. simulator <sim_name> spring <index1> <index2> <ks> <kd> <restlength>

This sets up a given spring. If the restlength is a negative number, the system should automatically set the restlength of the spring to the distance between the corresponding particles at the time the command is given.

6. simulator <sim_name> fix <index>

This command nails particle <index> to its current position.

7. simulator <sim_name> integration <euler|symplectic|verlet> <time step>

This changes the integration technique used by the given simulator and sets the time step of the integration.

8. simulator <sim_name> ground <ks> <kd>

Sets the parameters of the penalty forces applied to particles that try to go underground.

9. simulator <sim_name> gravity <g>

Sets the acceleration due to gravity, in unit length per unit time squared.

10. simulator <sim_name> drag <kdrag>

Sets the global drag (friction) coefficient (Fi = -kdrag vi). The command expects a positive number

bestdaixie

评论已关闭。