187 lines
9.7 KiB
Plaintext
187 lines
9.7 KiB
Plaintext
|
|
<Window
|
|||
|
|
x:Class="MetroGauges.WpfOthers"
|
|||
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|||
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|||
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|||
|
|
Title="其他建筑限界"
|
|||
|
|
Width="920"
|
|||
|
|
Height="626"
|
|||
|
|
Background="{DynamicResource MaterialDesignPaper}"
|
|||
|
|
Closing="MetroWindow_Closing"
|
|||
|
|
FontFamily="{StaticResource MaterialDesignFont}"
|
|||
|
|
Icon="/MetroGauges;component/Resources/Icon/其他.png"
|
|||
|
|
TextElement.FontSize="13"
|
|||
|
|
TextElement.FontWeight="Regular"
|
|||
|
|
TextElement.Foreground="{DynamicResource MaterialDesignBody}"
|
|||
|
|
TextOptions.TextFormattingMode="Ideal"
|
|||
|
|
TextOptions.TextRenderingMode="Auto"
|
|||
|
|
Topmost="True"
|
|||
|
|
WindowStartupLocation="CenterScreen"
|
|||
|
|
mc:Ignorable="d">
|
|||
|
|
|
|||
|
|
<ScrollViewer VerticalScrollBarVisibility="Auto">
|
|||
|
|
<StackPanel>
|
|||
|
|
<Expander
|
|||
|
|
Margin="0,2,0,1"
|
|||
|
|
Background="LightGray"
|
|||
|
|
Header="车站建筑限界">
|
|||
|
|
<WrapPanel Width="900">
|
|||
|
|
<GroupBox Margin="5" Header="站台建筑限界">
|
|||
|
|
<Label HorizontalAlignment="Left" Content="站台边缘距车厢外侧面的空隙宜采用100mm,
在计算长度范围内,直线地段轨道中心线至站台边缘距离1600mm,
在计算长度范围外,直线地段轨道中心线至站台边缘距离1850mm。
站台高度,即钢轨面至站台装修面距离,应取1080mm。
直线地段站台门门框边缘距车厢外侧面的空隙宜采用130mm。" />
|
|||
|
|
</GroupBox>
|
|||
|
|
<GroupBox Margin="5" Header="设备用房建筑限界">
|
|||
|
|
<Label
|
|||
|
|
HorizontalAlignment="Left"
|
|||
|
|
VerticalAlignment="Top"
|
|||
|
|
Content="外墙上有管线及设备时,
对于岛式站台,直线限界2150mm,对于侧式站台,直线限界2250mm。
墙上不敷设管线且无任何设备时,直线限界2000mm。
无法确定外墙上有无管线及设备时,按外墙上有管线及设备执行。" />
|
|||
|
|
</GroupBox>
|
|||
|
|
<GroupBox Margin="5" Header="折返线和存车线
直线建筑限界">
|
|||
|
|
<Label HorizontalAlignment="Left" Content="2150mm" />
|
|||
|
|
</GroupBox>
|
|||
|
|
</WrapPanel>
|
|||
|
|
</Expander>
|
|||
|
|
<Separator />
|
|||
|
|
<Expander Background="LightGray" Header="疏散平台限界">
|
|||
|
|
<WrapPanel>
|
|||
|
|
<GroupBox
|
|||
|
|
Margin="5"
|
|||
|
|
VerticalAlignment="Top"
|
|||
|
|
Header="平台位置">
|
|||
|
|
<StackPanel>
|
|||
|
|
<RadioButton
|
|||
|
|
x:Name="rba"
|
|||
|
|
Checked="RBC_Checked"
|
|||
|
|
Content="曲线外侧"
|
|||
|
|
GroupName="曲线S"
|
|||
|
|
IsChecked="True" />
|
|||
|
|
<RadioButton
|
|||
|
|
x:Name="rbi"
|
|||
|
|
Checked="RBC_Checked"
|
|||
|
|
Content="曲线内侧"
|
|||
|
|
GroupName="曲线S" />
|
|||
|
|
</StackPanel>
|
|||
|
|
</GroupBox>
|
|||
|
|
<GroupBox
|
|||
|
|
Width="350"
|
|||
|
|
Margin="5"
|
|||
|
|
Header="参数">
|
|||
|
|
<WrapPanel Orientation="Horizontal">
|
|||
|
|
<Label Width="200" Content="超高值 h" />
|
|||
|
|
<TextBox
|
|||
|
|
x:Name="h"
|
|||
|
|
Width="76"
|
|||
|
|
Height="23"
|
|||
|
|
HorizontalContentAlignment="Center"
|
|||
|
|
VerticalContentAlignment="Center"
|
|||
|
|
DataObject.Pasting="TextBoxPasting"
|
|||
|
|
PreviewTextInput="previewTextInput"
|
|||
|
|
TextWrapping="Wrap" />
|
|||
|
|
<Label
|
|||
|
|
x:Name="label1_Copy1"
|
|||
|
|
HorizontalAlignment="Left"
|
|||
|
|
Content="mm" />
|
|||
|
|
<Label
|
|||
|
|
x:Name="label_Copy3"
|
|||
|
|
Width="200"
|
|||
|
|
Content="平曲线半径 R" />
|
|||
|
|
<TextBox
|
|||
|
|
x:Name="r"
|
|||
|
|
Width="76"
|
|||
|
|
Height="23"
|
|||
|
|
HorizontalContentAlignment="Center"
|
|||
|
|
VerticalContentAlignment="Center"
|
|||
|
|
DataObject.Pasting="TextBoxPasting"
|
|||
|
|
PreviewTextInput="previewTextInput"
|
|||
|
|
TextWrapping="Wrap" />
|
|||
|
|
<Label
|
|||
|
|
x:Name="label1_Copy2"
|
|||
|
|
HorizontalAlignment="Left"
|
|||
|
|
Content="mm" />
|
|||
|
|
</WrapPanel>
|
|||
|
|
</GroupBox>
|
|||
|
|
<GroupBox
|
|||
|
|
Width="420"
|
|||
|
|
Height="100"
|
|||
|
|
Margin="5"
|
|||
|
|
Header="结果">
|
|||
|
|
<WrapPanel Orientation="Horizontal">
|
|||
|
|
<Label Width="280" Content="线路中心线至平台(曲线外侧)净距 Bsa" />
|
|||
|
|
<TextBox
|
|||
|
|
x:Name="Bsa"
|
|||
|
|
Width="76"
|
|||
|
|
Height="23"
|
|||
|
|
HorizontalContentAlignment="Center"
|
|||
|
|
VerticalContentAlignment="Center"
|
|||
|
|
DataObject.Pasting="TextBoxPasting"
|
|||
|
|
IsEnabled="False"
|
|||
|
|
PreviewTextInput="previewTextInput"
|
|||
|
|
TextWrapping="Wrap" />
|
|||
|
|
<Label
|
|||
|
|
x:Name="label1_Copy"
|
|||
|
|
HorizontalAlignment="Left"
|
|||
|
|
Content="mm" />
|
|||
|
|
<Label
|
|||
|
|
x:Name="label_Copy"
|
|||
|
|
Width="280"
|
|||
|
|
Content="线路中心线至平台(曲线内侧)净距 Bsi" />
|
|||
|
|
<TextBox
|
|||
|
|
x:Name="Bsi"
|
|||
|
|
Width="76"
|
|||
|
|
Height="23"
|
|||
|
|
HorizontalContentAlignment="Center"
|
|||
|
|
VerticalContentAlignment="Center"
|
|||
|
|
DataObject.Pasting="TextBoxPasting"
|
|||
|
|
IsEnabled="False"
|
|||
|
|
PreviewTextInput="previewTextInput"
|
|||
|
|
TextWrapping="Wrap" />
|
|||
|
|
<Label
|
|||
|
|
x:Name="label1"
|
|||
|
|
HorizontalAlignment="Left"
|
|||
|
|
Content="mm" />
|
|||
|
|
</WrapPanel>
|
|||
|
|
</GroupBox>
|
|||
|
|
<Button
|
|||
|
|
x:Name="btnScal"
|
|||
|
|
Margin="770,40,45,0"
|
|||
|
|
Click="btnScal_Click"
|
|||
|
|
Content="计算" />
|
|||
|
|
</WrapPanel>
|
|||
|
|
</Expander>
|
|||
|
|
<Separator />
|
|||
|
|
<Expander
|
|||
|
|
x:Name="expander2"
|
|||
|
|
Margin="0,0,0,1"
|
|||
|
|
Background="LightGray"
|
|||
|
|
Header="人防门建筑限界">
|
|||
|
|
<WrapPanel Width="900">
|
|||
|
|
<GroupBox
|
|||
|
|
x:Name="groupBox3"
|
|||
|
|
Margin="5"
|
|||
|
|
Header="站台门限界">
|
|||
|
|
<Label
|
|||
|
|
x:Name="label4"
|
|||
|
|
HorizontalAlignment="Left"
|
|||
|
|
Content="高度采用区间隧道建筑限界,
直线地段
线路中心线至门框距离为设备限界加不小于100mm的安全间隙;
曲线地段
若加宽总量不超出直线地段标准门宽度的限界富裕量,采用标准宽度门的中心偏离线路中心线的方法计算确定,
若加宽总量超出直线地段标准门宽度的限界富裕量,需加宽门体宽度。" />
|
|||
|
|
</GroupBox>
|
|||
|
|
</WrapPanel>
|
|||
|
|
</Expander>
|
|||
|
|
<Separator />
|
|||
|
|
<Expander Background="LightGray" Header="车辆段建筑限界">
|
|||
|
|
<WrapPanel>
|
|||
|
|
<GroupBox
|
|||
|
|
x:Name="groupBox4"
|
|||
|
|
Margin="5"
|
|||
|
|
Header="站台限界">
|
|||
|
|
<Label
|
|||
|
|
x:Name="label5"
|
|||
|
|
HorizontalAlignment="Left"
|
|||
|
|
Content="车辆段库外连续建筑物至设备限界净距1000mm;
车辆段库外非连续建筑物(长度不大于2m)至设备限界净距600mm;
车辆段车库大门宽度按照《地铁设计规范》表22.3.12中的规定,不小于3700mm:
车辆段车库大门高度,当列车落弓进库时,不小于4255mm;
车顶检修作业平台及安全栅栏与车辆轮廓线之间应留有80mm安全间隙,
中间检修作业平台建筑限界采用车站站台建筑限界。
" />
|
|||
|
|
</GroupBox>
|
|||
|
|
</WrapPanel>
|
|||
|
|
</Expander>
|
|||
|
|
|
|||
|
|
</StackPanel>
|
|||
|
|
</ScrollViewer>
|
|||
|
|
</Window>
|