-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgetConstants.m
More file actions
69 lines (55 loc) · 2.53 KB
/
getConstants.m
File metadata and controls
69 lines (55 loc) · 2.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
%% Load Common Constants
%GNU General Public License v3.0
%By Stefan Thanheiser: https://orcid.org/0000-0003-2765-1156
%
%Part of the paper:
%
%Thanheiser, S.; Haider, M.
%Dispersion Model for Level Control of Bubbling Fluidized Beds with
%Particle Cross-Flow
%Chemical Engineering Research and Design 2025
%
%All data, along with methodology reports and supplementary documentation,
%is published in the data repository:
%https://doi.org/10.5281/zenodo.7924693
%
%All required files for this function can be found in the software
%repository:
%https://doi.org/10.5281/zenodo.7948224
%
%
%
%This function loads the common constants needed for other calculations.
%
%
%Requires all auxiliary classes and functions on the MATLAB path
%
%Required products, version 24.1:
% - MATLAB
%Necessary files, classes, functions, and scripts:
% - @DryAir
function c=getConstants()
c=struct();
c.g=9.81; %Gravitational acceleration
c.d_p=174.494e-6; %Particle diameter (GRANUSIL, Wedron IL #801, Grade 7020)
c.rho_p=2650; %Particle density
c.epsMf=0.45; %Bed porosity at minimum fluidization conditions
c.dh_eps1=50e-3; %Height difference for porosity measurement, p1 and p3
c.dh_eps2=100e-3; %Height difference for porosity measurement, p2
c.rho_N=DryAir.rho(1014e2,21+273.15); %Reference density for flowmeter at 1014 hPa and 21°C
c.Apipe=154.08e-3^2*pi/4; %Inner pipe area of main air line (6 inch, schedule 40 pipe)
c.OnLimit=50e-3; %Minimum mass flow at which air supply is assumed to be on
c.hBed=461.5e-3+14e-3; %Persistent bed height, includes 14 mm from outlet weir to pressure probe that may not be filled with sand
c.hRef=1; %Reference bed height
c.dOrif=14.75e-3; %Orifice plate inner diameter
c.DOrif=82.5e-3; %Orifice plate outer diameter (=inner pipe diameter)
c.tap='D-D/2'; %Orifice plate pressure tap type
c.x1=202e-3; %Length of inlet / outlet chamber (first and fourth chamber)
c.x2=1.06; %Length of second chamber
c.x3=0.8; %Length of third chamber
c.xPress=37e-3; %Distance between pressure taps for bed level measurement (next to baffles)
c.l=0.5; %Width of all chambers
c.Afloor1=c.x1*c.l; %Distributor floor area, inlet / outlet chamber (first and fourth chamber)
c.Afloor2=c.x2*c.l; %Distributor floor area, second chamber
c.Afloor3=c.x3*c.l; %Distributor floor area, third chamber
end