27-walls_coincident.mdl 696 B

123456789101112131415161718192021222324252627282930313233343536
  1. /**********************************************************************
  2. * Regression test 27: Two walls are coincident with accuracy of EPS_C.
  3. *
  4. *
  5. * Failure: no errors
  6. * Success: run exits with afailure code and prints a message
  7. *
  8. * Author: Boris Kaminsky
  9. * Date: 2011-10-17
  10. ***********************************************************************/
  11. dt = 1e-6
  12. TIME_STEP = dt
  13. TIME_STEP_MAX = dt
  14. ITERATIONS = 1
  15. EFFECTOR_GRID_DENSITY = 10000
  16. VACANCY_SEARCH_DISTANCE = 1
  17. box_1 BOX
  18. {
  19. CORNERS = [-0.04,-0.04,-0.04] , [0.04,0.04,0.04]
  20. }
  21. box_2 BOX
  22. {
  23. CORNERS = [-0.04,-0.04,-0.04] , [0.04,0.04,0.04]
  24. }
  25. INSTANTIATE world OBJECT
  26. {
  27. box_1 OBJECT box_1 {}
  28. box_2 OBJECT box_2 {}
  29. }