Answer:
1791 secs ≈ 29.85 minutes
Explanation:
( Initial temperature of slab ) T1 = 300° C
temperature of water ( Ts ) = 25°C
T2 ( final temp of slab ) = 50°C
distance between slab and water jet = 25 mm
<u>Determine how long it will take to reach T2</u>
First calculate the thermal diffusivity
∝ = 50 / ( 7800 * 480 ) = 1.34 * 10^-5 m^2/s
<u>next express Temp as a function of time </u>
T( 25 mm , t ) = 50°C
next calculate the time required for the slab to reach 50°C at a distance of 25mm
attached below is the remaining part of the detailed solution
Answer:
Check the explanation
Explanation:
Code
.ORIG x4000
;load index
LD R1, IND
;increment R1
ADD R1, R1, #1
;store it in ind
ST R1, IND
;Loop to fill the remaining array
TEST LD R1, IND
;load 10
LD R2, NUM
;find tw0\'s complement
NOT R2, R2
ADD R2, R2, #1
;(IND-NUM)
ADD R1, R1, R2
;check (IND-NUM)>=0
BRzp GETELEM
;Get array base
LEA R0, ARRAY
;load index
LD R1, IND
;increment index
ADD R0, R0, R1
;store value in array
STR R1, R0,#0
;increment part
INCR
;Increment index
ADD R1, R1, #1
;store it in index
ST R1, IND
;go to test
BR TEST
;get the 6 in R2
;load base address
GETELEM LEA R0, ARRAY
;Set R1=0
AND R1, R1,#0
;Add R1 with 6
ADD R1, R1, #6
;Get the address
ADD R0, R0, R1
;Load the 6th element into R2
LDR R2, R0,#0
;Display array contents
PRINT
;set R1 = 0
AND R1, R1, #0
;Loop
;Get index
TOP ST R1, IND
;Load num
LD R3,NUM
;Find 2\'s complement
NOT R3, R3
ADD R3, R3,#1
;Find (IND-NUM)
ADD R1, R1,R3
;repeat until (IND-NUM)>=0
BRzp DONE
;load array address
LEA R0, ARRAY
;load index
LD R1, IND
;find address
ADD R3, R0, R1
;load value
LDR R1, R3,#0
;load 0x0030
LD R3, HEX
;convert value to hexadecimal
ADD R0, R1, R3
;display number
OUT
;GEt index
LD R1, IND
;increment index
ADD R1, R1, #1
;go to top
BR TOP
;stop
DONE HALT
;declaring variables
;set limit
NUM .FILL 10
;create array
ARRAY .BLKW 10 #0
;variable for index
IND .FILL 0
;hexadecimal value
HEX .FILL x0030
;stop
.END
Answer:The awnser is 5
Explanation:Just divide all of it
Answer
For isotropic material plastic yielding depends upon magnitude of the principle stress not on the direction.
Tresca and Von Mises yield criteria are the yield model which is widely used.
The Tresca yield criterion stated that yielding will occur in a material only when the greatest maximum shear stress reaches a critical value.
max{|σ₁ - σ₂|,|σ₂ - σ₃|,|σ₃ - σ₁|} = σ_f
under plane stress condition
|σ₁ - σ₂| = σ_f
The Von mises yielding criteria stated that the yielding will occur when elastic energy of distortion reaches critical value.
σ₁² - σ₁ σ₂ + σ₂² = σ²_f
Answer:
# Program is written in Python Programming Language
# Comments are used for explanatory purpose
# Program starts here
# Accept input
Steps = input (Number of Steps: ")
# Calculate distance
distance = float(2000) * float(steps)
#Print Formatted Result
print('%0.2f' % distance)
# End of Program
.--------
The above program converts number of steps to miles.
At line 5, the number of steps is inputted and stored in variable named Steps.
At line 6, the number of miles is calculated by multiplying 2000 by the content of variable Steps
The result is printed at line 8