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.
Files changed (63) hide show
  1. package/README.md +1 -1
  2. package/dist/w-geo.umd.js +3 -3
  3. package/dist/w-geo.umd.js.map +1 -1
  4. package/docs/-_class.mjs.html +2 -2
  5. package/docs/calcDepthByDepthStartEnd.mjs.html +2 -2
  6. package/docs/calcDepthStartEndByConnect.mjs.html +2 -2
  7. package/docs/calcDepthStartEndByDepth.mjs.html +10 -10
  8. package/docs/calcDepthStartEndByGroup.mjs.html +5 -5
  9. package/docs/calcLiquefaction.mjs.html +6 -3
  10. package/docs/calcVerticalStress.mjs.html +2 -2
  11. package/docs/checkDepth.mjs.html +2 -2
  12. package/docs/checkDepthStartEnd.mjs.html +2 -2
  13. package/docs/complementDepthData.mjs.html +2 -2
  14. package/docs/groupByDepthStartEnd.mjs.html +2 -2
  15. package/docs/index.html +2 -2
  16. package/docs/mergeByDepthStartEnd.mjs.html +2 -2
  17. package/docs/relaPlasticityParams.mjs.html +2 -2
  18. package/docs/relaPorousParams.mjs.html +2 -2
  19. package/docs/sepDepthStartEndByDepth.mjs.html +2 -2
  20. package/docs/smoothDepthByKey.mjs.html +2 -2
  21. package/docs/w-geo.html +55 -55
  22. package/{g13-calcLayers.mjs → g13-calcCptLayers.mjs} +10 -10
  23. package/g16-calcLiquefactionSptForCriticalPga.mjs +80 -0
  24. package/{g3-calcLiquefaction-spt.mjs → g3a-calcLiquefaction-spt.mjs} +1 -1
  25. package/g3b-calcLiquefaction-spt.mjs +76 -0
  26. package/package.json +2 -2
  27. package/src/WGeo.mjs +8 -1
  28. package/src/{calcLayers.mjs → calcCptLayers.mjs} +10 -10
  29. package/src/calcCptUnitWeight.mjs +2 -2
  30. package/src/calcDepthStartEndByDepth.mjs +8 -8
  31. package/src/calcDepthStartEndByGroup.mjs +3 -3
  32. package/src/calcLiquefaction.mjs +4 -1
  33. package/src/calcLiquefactionAddErr.mjs +45 -0
  34. package/src/calcLiquefactionClearStress.mjs +19 -0
  35. package/src/calcLiquefactionExtractErr.mjs +159 -0
  36. package/src/calcLiquefactionSpt.mjs +119 -0
  37. package/src/calcLiquefactionSptAddPropsAdv.mjs +19 -0
  38. package/src/calcLiquefactionSptAddPropsBasic.mjs +73 -0
  39. package/src/calcLiquefactionSptForCriticalPga.mjs +565 -0
  40. package/test/calcCptLayers-rowsIn1.json +1 -0
  41. package/test/calcCptLayers-rowsOut5.json +1 -0
  42. package/test/calcCptLayers-rowsOut6.json +1 -0
  43. package/test/calcCptLayers.test.mjs +108 -0
  44. package/test/calcLiquefactionSpt-resOut1.json +901 -0
  45. package/test/calcLiquefactionSpt-resOut2.json +943 -0
  46. package/test/calcLiquefactionSpt-rowsIn1.json +210 -0
  47. package/test/calcLiquefactionSpt-rowsIn2.json +275 -0
  48. package/test/calcLiquefactionSpt.test.mjs +36 -0
  49. package/test/calcLiquefactionSptForCriticalPga-resOut1.json +9019 -0
  50. package/test/calcLiquefactionSptForCriticalPga-resOut2.json +9474 -0
  51. package/test/calcLiquefactionSptForCriticalPga-rowsIn1.json +223 -0
  52. package/test/calcLiquefactionSptForCriticalPga-rowsIn2.json +288 -0
  53. package/test/calcLiquefactionSptForCriticalPga.test.mjs +42 -0
  54. package/test/calcLayers-rowsIn1.json +0 -1
  55. package/test/calcLayers-rowsOut5.json +0 -1
  56. package/test/calcLayers-rowsOut6.json +0 -1
  57. package/test/calcLayers.test.mjs +0 -108
  58. /package/test/{calcLayers-rowsOut1.json → calcCptLayers-rowsOut1.json} +0 -0
  59. /package/test/{calcLayers-rowsOut2.json → calcCptLayers-rowsOut2.json} +0 -0
  60. /package/test/{calcLayers-rowsOut3.json → calcCptLayers-rowsOut3.json} +0 -0
  61. /package/test/{calcLayers-rowsOut4.json → calcCptLayers-rowsOut4.json} +0 -0
  62. /package/test/{calcLayers-rowsOut7.json → calcCptLayers-rowsOut7.json} +0 -0
  63. /package/test/{calcLayers-rowsOut8.json → calcCptLayers-rowsOut8.json} +0 -0
package/README.md CHANGED
@@ -23,5 +23,5 @@ npm i w-geo
23
23
 
24
24
  Add script for w-geo.
25
25
  ```alias
26
- <script src="https://cdn.jsdelivr.net/npm/w-geo@1.1.4/dist/w-geo.umd.js"></script>
26
+ <script src="https://cdn.jsdelivr.net/npm/w-geo@1.1.6/dist/w-geo.umd.js"></script>
27
27
  ```