Skip to content

Recycled stream showing zero flow in a system #168

Closed Answered by yoelcortes
Uzair1shah asked this question in Q&A
Discussion options

You must be logged in to vote

@Uzair1shah,

You are seeing a zero flow rate to the mixer because you are printing the streams before you simulate the system. The code you sent me doesn't actually run, but I edited it anyway to convey that you should print results after simulating the systems (which solves recycle loops):

S113 = Stream('S113', phase='s') #recycle stream
S114 = Stream('S114', phase='s')
UO106 = units.Mixer('UO106', ins=(S109, S113), outs=(S114))

# Hammermill
S112 = Stream('S112', phase='s') #crushed dry feedstock
S115 = Stream('S115', phase='s') 

UO107 = units.HammerMill('UO107', ins=(S114), outs=(S115))

#Vibrating Screen
S116 = Stream('S116', phase='s')
UO108 = VibratingScreen('UO108', ins=S115, outs=(

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by Uzair1shah
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants