Warning: Trying to access array offset on value of type null in /home/site/wwwroot/lib/plugins/move/action/rename.php on line 42

Warning: Cannot modify header information - headers already sent by (output started at /home/site/wwwroot/lib/plugins/move/action/rename.php:42) in /home/site/wwwroot/inc/actions.php on line 38
adp_no_limits [topas wiki]

User Tools

Site Tools


adp_no_limits

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
adp_no_limits [2022/10/10 19:00] – external edit 127.0.0.1adp_no_limits [2022/11/29 15:14] (current) johnsoevans
Line 1: Line 1:
 +====== adp_no_limits ======
 +Description: remove positive definite limits on adps
 +
 +Comment: by default topas puts limits on values of uij - it's often more useful to know if something goes npd
 +
 +Contributed by: Alan Coelho
 +
 +<code smarty>macro adp_no_limits
 +{
 + move_to u11 min = Val - .05; max = Val + .05;
 + move_to u22 min = Val - .05; max = Val + .05;
 + move_to u33 min = Val - .05; max = Val + .05;
 + move_to u12 min = Val - .05; max = Val + .05;
 + move_to u13 min = Val - .05; max = Val + .05;
 + move_to u23 min = Val - .05; max = Val + .05;
 +}
 +</code>
 +