rts-sim-module/component/iscs_bas_plenum_chamber.go
2023-12-28 13:54:06 +08:00

17 lines
647 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package component
import "joylink.club/ecs"
// GasMixingChamber 混合室静压箱
//
// 送风系统中的配件
// 显然静压箱起到了增加静压的作用。静压箱的设计原则:静压箱的作用是为各分支管路提供均匀的压力,
// 从理论上说静压箱内部静压处处相等(这时静压箱容积要做得非常大,就是说静压箱内部流速处处为零)在实际工程中这是不可能的,
// 一般箱内风速可控制在2m/s以下或相对于进出风管风速有大大下降即可。
type GasMixingChamber struct {
}
var (
GasMixingChamberType = ecs.NewComponentType[GasMixingChamber]()
)