You are on page 1of 6

3/27/2020 (A) Calculation of Fixed End Moments due to Self weight of components of Box Shape Structure - Jupyter Notebook

(A) Calculation of Fixed End Moments due to Self


weight of components of Box Shape Structure

Input Variables
In [1]:

from math import pow as power

In [2]:

Lc = 1.25
Vch = 1.00
ht = 0.2
hb = 0.2
hwlt = 0.2
hwRt = 0.2
b = 1
GradeConcrete = "M30"

gamma_concrete = 25
gamma_soil = 20
gamma_wearingcoat = 22

CWclear = 11
WICB = 0
DICB = 0
WFP = 0
DFP = 0
WOkerb =.5
DOkerb = 0.075
WOCB = 0.5
DOCB = 1.1
Whaunch = 0.1
Dhaunch = 0.1
Total_CW_o = CWclear + 2*(WICB + WFP + WOkerb)

L = Lc + hwlt/2 + hwRt/2
y = Vch + ht/2 + hb/2
L0 = Lc + hwlt + hwRt

FEM (MABSW = MBASW) on top slab due to its own self


weight

https://hub.gke.mybinder.org/user/adharsh-analysi-shape-structure-wcocv6kg/notebooks/(A) Calculation of Fixed End Moments due to Self weight… 1/6


3/27/2020 (A) Calculation of Fixed End Moments due to Self weight of components of Box Shape Structure - Jupyter Notebook

In [3]:

Tswtop = (Total_CW_o*L0*ht*gamma_concrete) + (Total_CW_o*0.5*2*Whaunch * Dhaunch * gamma_co


Tswtop

Out[3]:

101.99999999999999

In [4]:

Wswtop = Tswtop/(L * Total_CW_o)


Wswtop

Out[4]:

5.86206896551724

In [5]:

MABFEswtop = (Wswtop * power(L, 2)) / 12


MABFEswtop

Out[5]:

1.0270833333333333

In [6]:

MBAFEswtop = MABFEswtop
MBAFEswtop

Out[6]:

1.0270833333333333

In [7]:

RAFEswtop = Wswtop * 0.5 * L


RAFEswtop

Out[7]:

4.25

In [8]:

RBFEswtop = RAFEswtop
RAFEswtop

Out[8]:

4.25

FEM (MCDSW = MDCSW) on bottom slab due to its own


self weight

https://hub.gke.mybinder.org/user/adharsh-analysi-shape-structure-wcocv6kg/notebooks/(A) Calculation of Fixed End Moments due to Self weight… 2/6


3/27/2020 (A) Calculation of Fixed End Moments due to Self weight of components of Box Shape Structure - Jupyter Notebook

In [9]:

Tswbottom = (Total_CW_o*L0*hb*gamma_concrete) + (Total_CW_o*0.5*2*Whaunch * Dhaunch * gamma


Tswbottom

Out[9]:

101.99999999999999

In [10]:

Wswbottom = Tswbottom/(L * Total_CW_o)


Wswbottom

Out[10]:

5.86206896551724

In [11]:

MCDFEswbottom = (Wswbottom * power(L, 2)) / 12


MCDFEswbottom

Out[11]:

1.0270833333333333

In [12]:

MDCFEswbottom = MCDFEswbottom
MDCFEswbottom

Out[12]:

1.0270833333333333

In [13]:

RCFEswbottom = Wswbottom * 0.5 * L


RCFEswbottom

Out[13]:

4.25

In [14]:

RDFEswbottom = RCFEswbottom
RDFEswbottom

Out[14]:

4.25

FEM (MADSW = MDASW) on left side vertical wall due


https://hub.gke.mybinder.org/user/adharsh-analysi-shape-structure-wcocv6kg/notebooks/(A) Calculation of Fixed End Moments due to Self weight… 3/6
3/27/2020 (A) Calculation of Fixed End Moments due to Self weight of components of Box Shape Structure - Jupyter Notebook

to its own self weight


In [15]:

SWLtsideWall = 1*1*hwlt*gamma_concrete
SWLtsideWall

Out[15]:

5.0

In [16]:

MADFESW = (SWLtsideWall * power(y, 2))/12


MADFESW

Out[16]:

0.6000000000000002

In [17]:

MDAFESW = MADFESW
MDAFESW

Out[17]:

0.6000000000000002

In [18]:

HASW = 0.5*y*SWLtsideWall
HASW

Out[18]:

3.0000000000000004

In [19]:

HDSW = HASW
HDSW

Out[19]:

3.0000000000000004

FEM (MBCSW = MCBSW) on right side vertical wall due


to its own self weight

https://hub.gke.mybinder.org/user/adharsh-analysi-shape-structure-wcocv6kg/notebooks/(A) Calculation of Fixed End Moments due to Self weight… 4/6


3/27/2020 (A) Calculation of Fixed End Moments due to Self weight of components of Box Shape Structure - Jupyter Notebook

In [20]:

SWRtsideWall = 1*1*hwRt*gamma_concrete
SWRtsideWall

Out[20]:

5.0

In [21]:

MBCFESW = (SWRtsideWall * power(y, 2))/12


MBCFESW

Out[21]:

0.6000000000000002

In [22]:

MCBFESW = MBCFESW
MCBFESW

Out[22]:

0.6000000000000002

In [23]:

HBSW = 0.5*y*SWRtsideWall
HBSW

Out[23]:

3.0000000000000004

In [24]:

HCSW = HBSW
HCSW

Out[24]:

3.0000000000000004

Finalized Fixed End Moments due to its self weight


components

https://hub.gke.mybinder.org/user/adharsh-analysi-shape-structure-wcocv6kg/notebooks/(A) Calculation of Fixed End Moments due to Self weight… 5/6


3/27/2020 (A) Calculation of Fixed End Moments due to Self weight of components of Box Shape Structure - Jupyter Notebook

In [25]:

print("MABFEswtop: ", MABFEswtop)


print("MBAFEswtop: ", MBAFEswtop)
print("MCDFEswbottom: ", MCDFEswbottom)
print("MDCFEswbottom: ", MDCFEswbottom)
print("MADFESW: ", MADFESW)
print("MDAFESW: ", MDAFESW)
print("MBCFESW: ", MBCFESW)
print("MCBFESW: ", MCBFESW)

MABFEswtop: 1.0270833333333333
MBAFEswtop: 1.0270833333333333
MCDFEswbottom: 1.0270833333333333
MDCFEswbottom: 1.0270833333333333
MADFESW: 0.6000000000000002
MDAFESW: 0.6000000000000002
MBCFESW: 0.6000000000000002
MCBFESW: 0.6000000000000002

https://hub.gke.mybinder.org/user/adharsh-analysi-shape-structure-wcocv6kg/notebooks/(A) Calculation of Fixed End Moments due to Self weight… 6/6

You might also like