Skip to content

Simple Python script for preliminary liquifaction analysis

Notifications You must be signed in to change notification settings

zmoin/soil-classification-eoas

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Soil Classification-EOAS-with Python

Python script to utilize given CPT data for preliminary liquifiction analysis and output the data in excel file and a plotting them using matplotlib.

Things you will need

Tips and Tools

  • General Syntax
    • You don’t have to know much other than some basic stuff
    • It’s always a good idea to look into documentation if you use something from a library
    • Try thinking everything in your PLAIN language first, then translate it to what you need to do.
  • Functions
    • Always a good idea to break down your code into sections called “functions”. Very similar to how Math functions work.
    • Don’t put too many things in your main function.
  • Bugs and Workarounds
    • Opensource problems. At any rate, in a workplace, you will be expected to find a solution or a workaround to any bugs that you face that doesn’t have an “official” bug fix.

Resources