⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 teledesic-288.tcl

📁 卫星仿真软件 卫星仿真软件 卫星仿真软件
💻 TCL
字号:
## Approximation of 288-satellite Boeing Teledesic design.## 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: teledesic-288.tcl,v 1.3 2004/12/26 14:47:20 lloydwood Exp $# note that planes would not be as clearly offset in reality;# with such a large number of satellites, control of phasing# is hard and random phasing between planes is likely to result.# Coverage should cope with that.# Eccentricity not known; approximated to zero.set SATS_PER_PLANE 24set NUM_PLANES 12# setup orbital elementsset a [expr 1375.0+$RADIUS_OF_EARTH]set e 0.0set inc 84.7set omega 0.0# still Ka-band and 40 degrees mask elevation.set coverage_angle 40.0# compute period of orbitset T_per [expr 2 * $PI * pow($a,1.5) / sqrt($MU)]satellites GV_BEGINfor {set j 0} {$j < $NUM_PLANES} {incr j} {	# space planes evenly, adjusted for seam.	set Omega [expr $j * 15 ]	for {set i 0} {$i < $SATS_PER_PLANE} {incr i} {		if { $j % 2 == 0} {			set plane_offset 0		} else {			set plane_offset [expr $T_per / $SATS_PER_PLANE / 2.0]		}                set T [expr $T_per * ($i + $j/double($NUM_PLANES)) / \					$SATS_PER_PLANE + $plane_offset ]		satellites LOAD $a $e $inc $Omega $omega $T	}}satellites GV_END

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -