优质物理代写代考
当前位置:以往案例 > >案例-案例物理Physics 307 Project 7 北美案例
2017-10-29

Physics 307 Project 7
Due Tuesday, 13 November, at 5 PM Progress report due 6 November before class

This project is the first of three parts. I encourage you to try to finish this project ahead of time and begin the next one before the deadline of this one. This project requires you to write some code; the next project will involve using that code to study some physics.


Your “report” for this project will just consist of keeping us up-to-date on your progress; next Thursday we’d like to see where you are, and will come around and check on you.


Please start early. I am giving you two weeks to do this project in order to accommo- date anyone who may have some difficulty. This will be a bit more challenging to code than your previous one; please don’t put it off until a few days before it’s due. We’ll be doing a check-in in a week for a grade; you’ll be given a grade based on how well your code works at that point. We don’t expect it to be perfect, only that you’re making good progress.


In this project, you will model a stretched string (as in a guitar or violin) using a lattice elasticity model, in which point masses (“nodes”) are connected by Hooke’s-law springs. For reference, the force law on any given node i (given in more detail in class) is:

image.png

where


˙ri,j is a vector pointing from the i’th node to the j’th one, and is thus equal to (xj − xi)ˆi + (yj − yi)ˆj, k is the spring constant of a single spring, r0 is its unstretched length, and m is the mass of each node. As before, you can use the “unit vector trick” to write rˆi,j in terms of the dynamical variables in the problem:

image.png

A lattice simulation of a stretched string has the following parameters:



• The number of nodes in the simulation N + 1 (or the number of springs N )

• The linear mass density of the unstretched string µ

• The unstretched length of the string L0

• The tension T applied to it to stretch it, which gives you the stretched length L

• The stiffness α (Young’s modulus times cross-sectional area)


1. Determine values of m, k, and r0 (the “microscopic” quantities of interest to your simulation) as a function of N, µ, L0 and α (the “macroscopic” quantities).

2. Write a program that simulates the vibrations of a stretched string of uniform density and elasticity, as we will discuss in class. (Notes will be posted on the website, too.) You should be able to easily change (by setting variables) some crucial parameters of your simulation: N, µ, L0, and α.

You should use the leapfrog solver for your simulation, although it might be useful to code it using Euler-Cromer first as a learning exercise.

3. Determine the initial conditions (all of the xi’s; all the y-coordinates and velocities will be zero) for a stretched but unexcited string with tension T applied to it. You will first need to determine the stretched length Lj, then put your N masses at equidistant points between x = 0 and x = Lj. Implement these initial conditions, and verify that the string doesn’t move.

Now stretch your string with sufficient tension to stretch it by 25-100% of its un- stretched length, and excite it somehow. You can do this by applying some external force to it at some instant in time, or by choosing initial values for the yi’s. Verify that it moves realistically. A simple initial condition that you can use is a Gaussian deformation, in which

image.png

where xc is the center of the excitation, σ is its width, A is its amplitude, and σ and xc are chosen so that the Gaussian dies down before you get to the ends of the string. You may use any other initial conditions you like for testing.

5. Play around with your

在线提交订单