w-geo 1.1.4 → 1.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/w-geo.umd.js +3 -3
- package/dist/w-geo.umd.js.map +1 -1
- package/docs/-_class.mjs.html +2 -2
- package/docs/calcDepthByDepthStartEnd.mjs.html +2 -2
- package/docs/calcDepthStartEndByConnect.mjs.html +2 -2
- package/docs/calcDepthStartEndByDepth.mjs.html +10 -10
- package/docs/calcDepthStartEndByGroup.mjs.html +5 -5
- package/docs/calcLiquefaction.mjs.html +6 -3
- package/docs/calcVerticalStress.mjs.html +2 -2
- package/docs/checkDepth.mjs.html +2 -2
- package/docs/checkDepthStartEnd.mjs.html +2 -2
- package/docs/complementDepthData.mjs.html +2 -2
- package/docs/groupByDepthStartEnd.mjs.html +2 -2
- package/docs/index.html +2 -2
- package/docs/mergeByDepthStartEnd.mjs.html +2 -2
- package/docs/relaPlasticityParams.mjs.html +2 -2
- package/docs/relaPorousParams.mjs.html +2 -2
- package/docs/sepDepthStartEndByDepth.mjs.html +2 -2
- package/docs/smoothDepthByKey.mjs.html +2 -2
- package/docs/w-geo.html +55 -55
- package/{g13-calcLayers.mjs → g13-calcCptLayers.mjs} +10 -10
- package/g16-calcLiquefactionSptForCriticalPga.mjs +80 -0
- package/{g3-calcLiquefaction-spt.mjs → g3a-calcLiquefaction-spt.mjs} +1 -1
- package/g3b-calcLiquefaction-spt.mjs +76 -0
- package/package.json +2 -2
- package/src/WGeo.mjs +8 -1
- package/src/{calcLayers.mjs → calcCptLayers.mjs} +10 -10
- package/src/calcCptUnitWeight.mjs +2 -2
- package/src/calcDepthStartEndByDepth.mjs +8 -8
- package/src/calcDepthStartEndByGroup.mjs +3 -3
- package/src/calcLiquefaction.mjs +4 -1
- package/src/calcLiquefactionAddErr.mjs +45 -0
- package/src/calcLiquefactionClearStress.mjs +19 -0
- package/src/calcLiquefactionExtractErr.mjs +159 -0
- package/src/calcLiquefactionSpt.mjs +119 -0
- package/src/calcLiquefactionSptAddPropsAdv.mjs +19 -0
- package/src/calcLiquefactionSptAddPropsBasic.mjs +73 -0
- package/src/calcLiquefactionSptForCriticalPga.mjs +565 -0
- package/test/calcCptLayers-rowsIn1.json +1 -0
- package/test/calcCptLayers-rowsOut5.json +1 -0
- package/test/calcCptLayers-rowsOut6.json +1 -0
- package/test/calcCptLayers.test.mjs +108 -0
- package/test/calcLiquefactionSpt-resOut1.json +901 -0
- package/test/calcLiquefactionSpt-resOut2.json +943 -0
- package/test/calcLiquefactionSpt-rowsIn1.json +210 -0
- package/test/calcLiquefactionSpt-rowsIn2.json +275 -0
- package/test/calcLiquefactionSpt.test.mjs +36 -0
- package/test/calcLiquefactionSptForCriticalPga-resOut1.json +9019 -0
- package/test/calcLiquefactionSptForCriticalPga-resOut2.json +9474 -0
- package/test/calcLiquefactionSptForCriticalPga-rowsIn1.json +223 -0
- package/test/calcLiquefactionSptForCriticalPga-rowsIn2.json +288 -0
- package/test/calcLiquefactionSptForCriticalPga.test.mjs +42 -0
- package/test/calcLayers-rowsIn1.json +0 -1
- package/test/calcLayers-rowsOut5.json +0 -1
- package/test/calcLayers-rowsOut6.json +0 -1
- package/test/calcLayers.test.mjs +0 -108
- /package/test/{calcLayers-rowsOut1.json → calcCptLayers-rowsOut1.json} +0 -0
- /package/test/{calcLayers-rowsOut2.json → calcCptLayers-rowsOut2.json} +0 -0
- /package/test/{calcLayers-rowsOut3.json → calcCptLayers-rowsOut3.json} +0 -0
- /package/test/{calcLayers-rowsOut4.json → calcCptLayers-rowsOut4.json} +0 -0
- /package/test/{calcLayers-rowsOut7.json → calcCptLayers-rowsOut7.json} +0 -0
- /package/test/{calcLayers-rowsOut8.json → calcCptLayers-rowsOut8.json} +0 -0
package/README.md
CHANGED