/usr/share/elmerpost/tcl/init.tcl is in elmer-common 6.1.0.svn.5396.dfsg2-4ubuntu4.
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 | #/*****************************************************************************
# *
# * 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.
# *
# *****************************************************************************/
#*******************************************************************************
#*
#* Initialize some global TCL variables, and include other TCL/TK commands
#*
#*******************************************************************************
#*
#* 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:
#*
#*******************************************************************************
set tcl_interactive 1
set platform $tcl_platform(platform)
if { ![info exists elmerpost_id] } {
set elmerpost_id elmerpost-[pid]
}
if { $platform == "windows" } {
catch { package require dde 1.0 }
catch { dde servername $elmerpost_id }
} else {
tk appname $elmerpost_id
}
if { [info exists env(ELMER_POST_HOME)] } {
set ELMER_POST_HOME [file join "" $env(ELMER_POST_HOME)]
} else {
set ELMER_POST_HOME "/mnt/mds/csc/jpr/SRC/ELMER/PostProcessor/"
}
if { [info exists env(LD_LIBRARY_PATH)] } {
set LD_LIBRARY_PATH $env(LD_LIBRARY_PATH)
}
set elm_auto_load_packages 1
set global_limits(MAX_COLORMAP_ENTRIES) 512
set auto_noexec 1
#set auto_path "$auto_path ."
#history keep 200
wm geometry . -30+30
proc $ { args } { eval exec $args }
proc @ { args } {
set a [eval expr $args];
return $a
}
proc echo { args } { global main_out; $main_out insert end $args\n; $main_out yview end }
proc cat { args } { $ cat $args }
proc m { args } { math $args }
proc display {} { translate -r 0 0 0; ActivateGraphicsWindow; }
proc p {} { display }
proc play {} { display }
proc do { var beg end body {doupdate 0} } {
global errorInfo errorCode BreakLoop
upvar $var v
set do_focus [focus]
for { set v $beg } { $v <= $end } { incr v } {
switch [catch {uplevel $body} msg] {
1 {return -code error -errorinfo $errorInfo -errorcode $errorCode $msg}
2 {return -code return $msg}
3 return
}
if { $BreakLoop } break
if { $doupdate != 0 } {
update
UpdateDisplay
}
}
focus $do_focus
}
proc forever { body } {
global BreakLoop
while { !$BreakLoop } {
switch [catch {uplevel $body} msg] {
1 {return -code error -errorinfo $errorInfo -errorcode $errorCode $msg}
2 {return -code return $msg}
3 return
}
if { $BreakLoop } break
update
UpdateDisplay
}
}
rename scale slider
proc Exit {} { exit }
proc clear { {onoff "on"} } {
global GraphicsClearOn
if { $onoff == "on" } {
set GraphicsClearOn 1
} else {
set GraphicsClearOn 0
}
}
proc place_window { win } {
set main [wm geometry .]
scan $main "%dx%d%1s%d%1s%d" w h s1 x s2 y
wm geometry $win $s1[@ $x+100]$s2[@ $y+200]
}
source $ELMER_POST_HOME/tcl/menu.tcl
source $ELMER_POST_HOME/tcl/readfile.tcl
source $ELMER_POST_HOME/tcl/math.tcl
source $ELMER_POST_HOME/tcl/args.tcl
source $ELMER_POST_HOME/tcl/misc.tcl
source $ELMER_POST_HOME/tcl/file.tcl
source $ELMER_POST_HOME/tcl/text.tcl
source $ELMER_POST_HOME/tcl/dialog.tcl
source $ELMER_POST_HOME/tcl/colormap.tcl
source $ELMER_POST_HOME/tcl/group.tcl
source $ELMER_POST_HOME/tcl/material.tcl
source $ELMER_POST_HOME/tcl/timestep.tcl
source $ELMER_POST_HOME/tcl/camera.tcl
source $ELMER_POST_HOME/tcl/clip.tcl
source $ELMER_POST_HOME/tcl/mesh.tcl
source $ELMER_POST_HOME/tcl/vectors.tcl
source $ELMER_POST_HOME/tcl/contours.tcl
source $ELMER_POST_HOME/tcl/isosurface.tcl
source $ELMER_POST_HOME/tcl/particle.tcl
source $ELMER_POST_HOME/tcl/sphere.tcl
source $ELMER_POST_HOME/tcl/colorscale.tcl
source $ELMER_POST_HOME/tcl/modedisplay.tcl
source $ELMER_POST_HOME/tcl/saveimage.tcl
source $ELMER_POST_HOME/tcl/LoadSicopolis.tcl
#source $ELMER_POST_HOME/tcl/message.tcl
source $ELMER_POST_HOME/help/help.tcl
puts "loading colormaps"
material -diffuse 90,90,90 -specular 0,0,0 -opacity 100 -shininess 20
background 0 0 0
colormap $ELMER_POST_HOME/lib/colormaps/default.cm
rotpriority local
UpdateObject
puts "loading math init"
math "source(\"$ELMER_POST_HOME/lib/mc.ini\")"
#
# load shared modules from post/modules directory
#
if { [file exists $ELMER_POST_HOME/modules] } {
set mods [glob $ELMER_POST_HOME/modules/*];
#
# Add menubutton "Modules" to menubar
#
menubutton .menubar.modules -menu .menubar.modules.menu \
-text "Modules" -underline 0
menu .menubar.modules.menu
pack .menubar.modules -side right
set n [llength $mods];
do i 0 [@ $n-1] {
set mod [lindex $mods $i];
if { [file exists $mod] } {
puts "Loading external module: $mod";
load $mod [file rootname [file tail $mod]];
#
# Add module to "Modules":
#
set modfile [file tail $mod];
#
# Module name:
#
set tmp ""
set module_name ""
regexp (.*).so $modfile tmp module_name
if { $module_name == "" } {
regexp (.*).dll $modfile tmp module_name
}
#
# Load tcl script:
#
if { $module_name != "" } {
set tclfile $module_name.tcl;
set modsource $ELMER_POST_HOME/tcl/$tclfile;
if { [file exist $modsource] } {
puts "Source script: $modsource";
source $modsource;
.menubar.modules.menu add command -underline 0
.menubar.modules.menu entryconfigure last \
-label $module_name -command $module_name.Control
}
}
}
}
}
puts "done initializing"
|