I am facing a specific issue with my simulation, where I am simulating tunneling through jointed rock formations.
I have noticed that when the joint intersects directly with the tunnel, the displacements and stresses fail to appear after entering all the necessary simulation parameters. In contrast, when the joint is positioned before and after the tunnel, the simulation behaves as expected, showing all displacements and stresses clearly.
The Script:
ADONIS>> newmodel()
ADONIS>> rect("startPoint",50,50,"endPoint",-50,-50)
ADONIS>> circle("centerPoint",0,0,"radius",6,"numSeg",100)
ADONIS>> joint("startPoint",-10,-50,"endPoint",10,50,"id",1)
ADONIS>> joint("startPoint",-9,-50,"endPoint",11,50,"id",2)
ADONIS>> discretize("size","auto")
ADONIS>> gmsh("size","auto","elemtype","T3","useNMD","on")
ADONIS>> material("create","IsoElastic","matid",1,"matname","Material 1","density",2500,"shear",1.92308e+08,"bulk",4.16667e+08)
ADONIS>> material("create","IsoElastic","matid",2,"matname","Material 2","density",2500,"shear",2.08333e+06,"bulk",2.77778e+06)
ADONIS>> excavate("region",0.74019,0)
ADONIS>> excavate("region",-2.03552,-0.925237)
ADONIS>> excavate("region",1.85047,-1.11028)
ADONIS>> material("assign","matid",1,"region",23.6861,-20.5403)
ADONIS>> material("assign","matid",1,"region",-20.3552,-12.7683)
ADONIS>> material("assign","matid",2,"region",-2.40562,-13.8786)
ADONIS>> material("assign","matid",2,"region",3.33085,15.1739)
ADONIS>> imaterial("edit","ifid",1,"jkn",2e+08,"jks",2e+08)
ADONIS>> imaterial("edit","ifid",2,"jkn",2e+08,"jks",2e+08)
ADONIS>> applybc("xyfix","xlim",-51.628,61.991,"ylim",48.667,52.183)
ADONIS>> applybc("xyfix","xlim",47.002,74.204,"ylim",-56.625,52.924)
ADONIS>> applybc("xyfix","xlim",-65.507,62.916,"ylim",-59.585,-49.223)
ADONIS>> applybc("xyfix","xlim",-51.998,-47.742,"ylim",-56.625,54.219)
ADONIS>> initial("sxx",-2.5e+6)
ADONIS>> initial("syy",-5e+6)
ADONIS>> solve()