📄 ico.tcl
字号:
## ICO (previously known as Inmarsat-P or Project 21)## Zero phasing between planes, since odd number of sats 180deg opposed# means that sats cross the other plane halfway between sats in that plane,# which is ideal for coverage.## this script for SaVi 1.2, by Lloyd Wood (L.Wood@surrey.ac.uk)# http://www.ee.surrey.ac.uk/Personal/L.Wood/constellations/## $Id: ico.tcl,v 1.4 2004/12/26 14:47:20 lloydwood Exp $set SATS_PER_PLANE 5set NUM_PLANES 2# setup orbital elements# altitude was 10,355km until recently.# Noticed and confirmed change to 10,390km in October 1998.set a [expr 10390.0+$RADIUS_OF_EARTH]set e 0.0set inc 45.0set omega 0.0set T_per [expr 2 * $PI * pow($a,1.5) / sqrt($MU)]# elevation angle of 10 degreesset coverage_angle 10.0satellites GV_BEGINfor {set j 0} {$j < $NUM_PLANES} {incr j} { set Omega [expr $j * 360.0 / $NUM_PLANES ] for {set i 0} {$i < $SATS_PER_PLANE} {incr i} { set T [expr $T_per * $i / $SATS_PER_PLANE ] satellites LOAD $a $e $inc $Omega $omega $T }}satellites GV_END
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -