Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99280887
Script.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Jan 23, 01:21
Size
378 B
Mime Type
text/x-python
Expires
Sat, Jan 25, 01:21 (2 d)
Engine
blob
Format
Raw Data
Handle
23765525
Attached To
rCONVECTION Convection Heat Transfer Notebook
Script.py
View Options
import
numpy
as
np
import
csv
import
matplotlib.pyplot
as
plt
x
=
np
.
linspace
(
0
,
0.5
,
100
)
def
readcsvfile
(
data
,
filename
):
data
=
[];
with
open
(
filename
)
as
csvfile
:
reader
=
csv
.
reader
(
csvfile
)
for
row
in
reader
:
data
.
append
(
row
)
csvfile
.
close
()
return
data
water
=
[]
water
=
readcsvfile
(
water
,
'Saturated_Water.csv'
)
print
(
water
)
Event Timeline
Log In to Comment