/usr/share/elmerpost/tcl/misc.tcl is in elmer-common 6.1.0.svn.5396.dfsg2-4ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 | #/*****************************************************************************
# *
# * Elmer, A Finite Element Software for Multiphysical Problems
# *
# * Copyright 1st April 1995 - , CSC - IT Center for Science Ltd., Finland
# *
# * This program is free software; you can redistribute it and/or
# * modify it under the terms of the GNU General Public License
# * as published by the Free Software Foundation; either version 2
# * of the License, or (at your option) any later version.
# *
# * This program is distributed in the hope that it will be useful,
# * but WITHOUT ANY WARRANTY; without even the implied warranty of
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# * GNU General Public License for more details.
# *
# * You should have received a copy of the GNU General Public License
# * along with this program (in file fem/GPL-2); if not, write to the
# * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
# * Boston, MA 02110-1301, USA.
# *
# *****************************************************************************/
#*******************************************************************************
#*
#* Misc utilities...
#*
#*******************************************************************************
#*
#* Author: Juha Ruokolainen
#*
#* Address: CSC - IT Center for Science Ltd.
#* Keilaranta 14, P.O. BOX 405
#* 02101 Espoo, Finland
#* Tel. +358 0 457 2723
#* Telefax: +358 0 457 2302
#* EMail: Juha.Ruokolainen@csc.fi
#*
#* Date: 26 Sep 1995
#*
#* Modified by:
#*
#* Date of modification:
#*
#*******************************************************************************
proc quit {} { Exit }
proc trnpriority { args } {
set Usage "Usage: trnpriority value\n\nValue is one of (trs,tsr,rts,rst,str,srt).\n\n"
set value(trs) 0
set value(tsr) 1
set value(rts) 2
set value(rst) 3
set value(str) 4
set value(srt) 5
check_args trnpriority $Usage 0 1 opt opt_val 1 1 arg_val $args
if { ![info exists arg_val] } { return $Usage }
set sid [array startsearch arg_val]
while { [array anymore arg_val $sid] != 0 } {
set n [array nextelement arg_val $sid]
set val $arg_val($n)
set n [string range $n 1 [string length $n]]
}
array donesearch arg_val $sid
if { ![info exists value($val)] } { return $Usage }
cTrnPriority $value($val)
}
proc rotpriority { args } {
set Usage "Usage: rotpriority value\n\nValue is one of (xyz,xzy,yxz,yzx,zxy,zyx,local,global)."
set value(xyz) 0
set value(xzy) 1
set value(yxz) 2
set value(yzx) 3
set value(zxy) 4
set value(zyx) 5
set value(local) 6
set value(global) 7
set value(aapo) 8
check_args rotpriority $Usage 0 1 opt opt_val 1 1 arg_val $args
if { ![info exists arg_val] } { return $Usage }
set sid [array startsearch arg_val]
while { [array anymore arg_val $sid] != 0 } {
set n [array nextelement arg_val $sid]
set val $arg_val($n)
set n [string range $n 1 [string length $n]]
}
array donesearch arg_val $sid
if { ![info exists value($val)] } { return $Usage }
cRotPriority $value($val)
}
proc rotate { args } {
set Usage "Usage: rotate \[-relative -x -y -z\] ang1 \[ang2\] \[ang3\]\n\n"
set opt(1,name) -relative; set opt(1,args) 0
set opt(2,name) -x; set opt(2,args) 0
set opt(3,name) -y; set opt(3,args) 0
set opt(4,name) -z; set opt(4,args) 0
check_args rotate $Usage 4 0 opt opt_val 1 3 arg_val $args
if { ![info exists arg_val] } { return $Usage }
set x 0
set y 0
set z 0
set rel 0
if { [info exists opt_val] } {
set sid [array startsearch opt_val]
while { [array anymore opt_val $sid] != 0 } {
set n [array nextelement opt_val $sid]
set value $opt_val($n)
set n [string range $n 1 [string length $n]]
switch $n {
relative { set rel 1 }
x { set x 1 }
y { set y 1 }
z { set z 1 }
}
}
array donesearch opt_val $sid
}
if { [@ $x+$y+$z] > 1 } {
return -code error "rotate: Give only one of \[x,y,z\].\n\n$Usage"
}
if { $x } {
set cmd0 "x"
} elseif { $y } {
set cmd0 "y"
} elseif { $z } {
set cmd0 "z"
} else { set cmd0 "all" }
if { $rel } { set cmd1 "relative" } else { set cmd1 "absolute" }
set cmd2 $arg_val(0)
if { [info exists arg_val(1)] } { set cmd2 "$cmd2 $arg_val(1)" }
if { [info exists arg_val(2)] } { set cmd2 "$cmd2 $arg_val(2)" }
cRotate $cmd0 $cmd1 $cmd2
}
proc scale { args } {
set Usage "Usage: scale \[-relative -x -y -z -all\] scl1 \[scl2\] \[scl3\]\n\n"
set opt(1,name) -relative; set opt(1,args) 0
set opt(2,name) -x; set opt(2,args) 0
set opt(3,name) -y; set opt(3,args) 0
set opt(4,name) -z; set opt(4,args) 0
set opt(5,name) -all; set opt(5,args) 0
check_args scale $Usage 5 0 opt opt_val 1 3 arg_val $args
if { ![info exists arg_val] } { return $Usage }
set x 0
set y 0
set z 0
set all 0
set rel 0
if { [info exists opt_val] } {
set sid [array startsearch opt_val]
while { [array anymore opt_val $sid] != 0 } {
set n [array nextelement opt_val $sid]
set value $opt_val($n)
set n [string range $n 1 [string length $n]]
switch $n {
relative { set rel 1 }
x { set x 1 }
y { set y 1 }
z { set z 1 }
all { set all 1 }
}
}
array donesearch opt_val $sid
}
if { [@ $x+$y+$z+$all] > 1 } {
return -code error "scale: Give only one of \[x,y,z,all\].\n\n$Usage"
}
if { $x } {
set cmd0 "x"
} elseif { $y } {
set cmd0 "y"
} elseif { $z } {
set cmd0 "z"
} else { set cmd0 "all" }
if { $rel } { set cmd1 "relative" } else { set cmd1 "absolute" }
set cmd2 $arg_val(0)
if { [info exists arg_val(1)] } { set cmd2 "$cmd2 $arg_val(1)" }
if { [info exists arg_val(2)] } { set cmd2 "$cmd2 $arg_val(2)" }
cScale $cmd0 $cmd1 $cmd2
}
proc translate { args } {
set Usage "Usage: translate \[-relative -x -y -z\] trs1 \[trs2\] \[trs3\]\n\n"
set opt(1,name) -relative; set opt(1,args) 0
set opt(2,name) -x; set opt(2,args) 0
set opt(3,name) -y; set opt(3,args) 0
set opt(4,name) -z; set opt(4,args) 0
check_args translate $Usage 4 0 opt opt_val 1 3 arg_val $args
if { ![info exists arg_val] } { return $Usage }
set x 0
set y 0
set z 0
set rel 0
if { [info exists opt_val] } {
set sid [array startsearch opt_val]
while { [array anymore opt_val $sid] != 0 } {
set n [array nextelement opt_val $sid]
set value $opt_val($n)
set n [string range $n 1 [string length $n]]
switch $n {
relative { set rel 1 }
x { set x 1 }
y { set y 1 }
z { set z 1 }
}
}
array donesearch opt_val $sid
}
if { [@ $x+$y+$z] > 1 } {
return -code error "scale: Give only one of \[x,y,z,all\].\n\n$Usage"
}
if { $x } {
set cmd0 "x"
} elseif { $y } {
set cmd0 "y"
} elseif { $z } {
set cmd0 "z"
} else { set cmd0 "all" }
if { $rel } { set cmd1 "relative" } else { set cmd1 "absolute" }
set cmd2 $arg_val(0)
if { [info exists arg_val(1)] } { set cmd2 "$cmd2 $arg_val(1)" }
if { [info exists arg_val(2)] } { set cmd2 "$cmd2 $arg_val(2)" }
cTranslate $cmd0 $cmd1 $cmd2
}
|