Opened 17 years ago
Closed 17 years ago
#31 closed defect (fixed)
deprecated "\O" notation occurs in diffusion example
| Reported by: | Stephen Siegel | Owned by: | zirkel |
|---|---|---|---|
| Priority: | minor | Milestone: | |
| Component: | examples | Version: | 1.0 |
| Keywords: | accuracy order \O big-O diffusion | Cc: |
Description
The following assertion occurs in diffusion_seq.mmp:
assert forall {int i | 1 <= i && i <= nx-2} v_new[i] -
( (u(i*dx,(iter+1)*dt) - u(i*dx,iter*dt))/dt -
k*( (u((i+1)*dx,iter*dt) - 2*u(i*dx,iter*dt) + u((i-1)*dx,iter*dt))/dt)) == \O(dx*dx)+\O(dt);
See my grant proposal document for the correct assertion.
Make sure the \O does not occur in other examples as well.
Change History (2)
comment:1 by , 17 years ago
| Status: | new → accepted |
|---|
comment:2 by , 17 years ago
| Resolution: | → fixed |
|---|---|
| Status: | accepted → closed |
Note:
See TracTickets
for help on using tickets.

Changed.