dda-cvs Mailing List for Discontinuous Deformation Analysis (Page 5)
Status: Beta
Brought to you by:
doolin
You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(7) |
Jun
(6) |
Jul
(15) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(5) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(10) |
Feb
(3) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(7) |
Sep
|
Oct
|
Nov
|
Dec
(5) |
2006 |
Jan
|
Feb
|
Mar
(88) |
Apr
(32) |
May
(9) |
Jun
(63) |
Jul
(55) |
Aug
(7) |
Sep
(1) |
Oct
(3) |
Nov
(10) |
Dec
(3) |
2007 |
Jan
(2) |
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(8) |
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
(12) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: David M. D. <do...@us...> - 2006-07-01 14:35:50
|
Update of /cvsroot/dda/ntdda/src In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv23558 Modified Files: dxf.c Log Message: indent note for dxf.c Index: dxf.c =================================================================== RCS file: /cvsroot/dda/ntdda/src/dxf.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** dxf.c 1 Jul 2006 05:28:33 -0000 1.1 --- dxf.c 1 Jul 2006 14:35:44 -0000 1.2 *************** *** 337,340 **** --- 337,343 ---- * Run it like this: * ./dxf < infile.dxf + * + * Code formatted using indent: + * indent -br -ce -nut dxf.c */ int |
From: David M. D. <do...@us...> - 2006-07-01 05:28:37
|
Update of /cvsroot/dda/ntdda/src In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv11064 Added Files: dxf.c Log Message: Moved dxf code to it's own file. This file can later form the basis for an entire dxf module. --- NEW FILE: dxf.c --- #include <stdio.h> #include <stdlib.h> #include <string.h> #include <memory.h> #include <math.h> #include "dxf.h" void dxf_read_file (FILE * fp1, char *geofilename) { double *jx1, *jy1, *jx2, *jy2; char str[5000][50]; // Change to using ofp FILE *fp2; // output file pointer //FILE * ofp; int count1 = 0, count2 = 0, i, j; long *type, pn; int cabcou = 0, dec, ii, pltype, ctype, n1; int fixn = 0, measn = 0, holen = 0, loadn = 0; double r0, se, u, v, x1, x2, x3, y1, y2, y3, x0, y0, deg; double fx[25], fy[25], lx[25], ly[25]; double mx[25], my[25], hx[25], hy[25]; int nline = 0, npoly = 0, narc = 0, ncir = 0, ntext = 0; //OPENFILENAME ofn; //char temp[200]; while (!feof (fp1)) { count1 += 1; fscanf (fp1, "%s", str[count1]); if (strcmp (str[count1], "LINE") == 0) nline += 1; if (strcmp (str[count1], "LWPOLYLINE") == 0) npoly += 1; if (strcmp (str[count1], "ARC") == 0) narc += 1; if (strcmp (str[count1], "CIRCLE") == 0) ncir += 1; } // Array Allocation n1 = nline + 40 * npoly + 40 * narc + 40 * ncir + 1; jx1 = (double *) calloc (n1, sizeof (double)); jy1 = (double *) calloc (n1, sizeof (double)); jx2 = (double *) calloc (n1, sizeof (double)); jy2 = (double *) calloc (n1, sizeof (double)); type = (long *) calloc (n1, sizeof (long)); for (i = 1; i <= count1; i++) { // The dxf file will be read from this line and lines, polylines // and arcs will be recognized from dxf file if (strcmp (str[i], "LINE") == 0) { count2 += 1; if (strcmp (str[i + 9], "62") == 0) { type[count2] = atoi (str[i + 10]) + 1; dec = 2; } else { type[count2] = 1; dec = 0; } jx1[count2] = atof (str[i + 12 + dec]); jy1[count2] = atof (str[i + 14 + dec]); jx2[count2] = atof (str[i + 18 + dec]); jy2[count2] = atof (str[i + 20 + dec]); } if (strcmp (str[i], "LWPOLYLINE") == 0) { if (strcmp (str[i + 9], "62") == 0) { pltype = atoi (str[i + 10]) + 1; dec = 2; } else { pltype = 1; dec = 0; } pn = atoi (str[i + 12 + dec]); for (j = 0; j < pn - 1; j++) { ii = 4 * j; count2 += 1; jx1[count2] = atof (str[i + 18 + ii + dec]); jy1[count2] = atof (str[i + 18 + ii + 2 + dec]); jx2[count2] = atof (str[i + 18 + ii + 4 + dec]); jy2[count2] = atof (str[i + 18 + ii + 6 + dec]); type[count2] = pltype; } count2 += 1; if (strcmp (str[i + 9], "62") == 0) { type[count2] = atoi (str[i + 10]) + 1; dec = 2; } else { type[count2] = 1; dec = 0; } ii = 4 * 3; jx1[count2] = atof (str[i + 18 + ii + dec]); jy1[count2] = atof (str[i + 18 + ii + 2 + dec]); jx2[count2] = atof (str[i + 18 + dec]); jy2[count2] = atof (str[i + 20 + dec]); type[count2] = pltype; } // From this line first, center and second points // of an arc will be extracted from dxf // and the lines of arc are created with a // simple mathematical source if (strcmp (str[i], "ARC") == 0) { if (strcmp (str[i + 9], "62") == 0) { ctype = atoi (str[i + 10]) + 1; dec = 2; } else { ctype = 1; dec = 0; } se = 30; deg = atof (str[i + 24 + dec]); r0 = ((3.1415926535) * deg) / (se * 180); x1 = atof (str[i + 12 + dec]) + atof (str[i + 18 + dec]); y1 = atof (str[i + 14 + dec]); x2 = atof (str[i + 12 + dec]); y2 = atof (str[i + 14 + dec]); x0 = x2; y0 = y2; x3 = atof (str[i + 12 + dec]) - atof (str[i + 18 + dec]); y3 = atof (str[i + 14 + dec]); for (j = 1; j < se; j++) { u = ((x1 - x0) * (cos (r0) - 1)) - ((y1 - y0) * sin (r0)); v = ((x1 - x0) * sin (r0)) + ((y1 - y0) * (cos (r0) - 1)); x2 = x1 + u; y2 = y1 + v; count2 += 1; jx1[count2] = x1; jy1[count2] = y1; jx2[count2] = x2; jy2[count2] = y2; type[count2] = ctype; x1 = x2; y1 = y2; } x2 = x3; y2 = y3; count2 += 1; jx1[count2] = x1; jy1[count2] = y1; jx2[count2] = x2; jy2[count2] = y2; type[count2] = ctype; } // From this line first, center and second // points of an circle will be extracted from dxf // and the lines of arc are created with a // simple mathematical source if (strcmp (str[i], "CIRCLE") == 0) { if (strcmp (str[i + 9], "62") == 0) { ctype = atoi (str[i + 10]) + 1; dec = 2; } else { ctype = 1; dec = 0; } se = 30; deg = 360; r0 = ((3.1415926535) * deg) / (se * 180); x1 = atof (str[i + 12 + dec]) + atof (str[i + 18 + dec]); y1 = atof (str[i + 14 + dec]); x2 = atof (str[i + 12 + dec]); y2 = atof (str[i + 14 + dec]); x0 = x2; y0 = y2; x3 = x1; y3 = y1; for (j = 1; j < se; j++) { u = ((x1 - x0) * (cos (r0) - 1)) - ((y1 - y0) * sin (r0)); v = ((x1 - x0) * sin (r0)) + ((y1 - y0) * (cos (r0) - 1)); x2 = x1 + u; y2 = y1 + v; count2 += 1; jx1[count2] = x1; jy1[count2] = y1; jx2[count2] = x2; jy2[count2] = y2; type[count2] = ctype; x1 = x2; y1 = y2; } x2 = x3; y2 = y3; count2 += 1; jx1[count2] = x1; jy1[count2] = y1; jx2[count2] = x2; jy2[count2] = y2; type[count2] = ctype; } if (strcmp (str[i], "MTEXT") == 0) { if (strcmp (str[i + 9], "62") == 0) { dec = 2; } else { dec = 0; } if (strcmp (str[i + 26 + dec], "F") == 0) { fixn += 1; fx[fixn] = atof (str[i + 12 + dec]); fy[fixn] = atof (str[i + 14 + dec]); } if (strcmp (str[i + 26 + dec], "L") == 0) { loadn += 1; lx[loadn] = atof (str[i + 12 + dec]); ly[loadn] = atof (str[i + 14 + dec]); } if (strcmp (str[i + 26 + dec], "M") == 0) { measn += 1; mx[measn] = atof (str[i + 12 + dec]); my[measn] = atof (str[i + 14 + dec]); } if (strcmp (str[i + 26 + dec], "H") == 0) { holen += 1; hx[holen] = atof (str[i + 12 + dec]); hy[holen] = atof (str[i + 14 + dec]); } } } fclose (fp1); // From this line the data that extracted from dxf file will be sorted // and will be wrote into geo file. fp2 = fopen (geofilename, "w"); fprintf (fp2, "<?xml version=\"1.0\" standalone=\"no\"?>\n"); fprintf (fp2, "<!DOCTYPE DDA SYSTEM \"geometry.dtd\">\n"); fprintf (fp2, "<Berkeley:DDA xmlns:Berkeley=\"http://www.tsoft.com/~bdoolin/dda\">\n"); fprintf (fp2, "<!-- Bogus comment to keep ddaml tree-stripping\n"); fprintf (fp2, "from seg faulting on bad child node. -->\n\n"); fprintf (fp2, "<Geometry>\n"); fprintf (fp2, " <Edgenodedist distance=\"%lf\"/>\n", 0.001); fprintf (fp2, " <Jointlist>\n"); for (i = 1; i <= count2; i++) { fprintf (fp2, " <Joint type=\"%d\">", type[i]); fprintf (fp2, " %lf %lf %lf %lf", jx1[i], jy1[i], jx2[i], jy2[i]); fprintf (fp2, " </Joint>\n"); } fprintf (fp2, "</Jointlist>\n"); fprintf (fp2, "<Fixedpointlist>\n"); for (i = 1; i <= fixn; i++) { fprintf (fp2, "<Line> %lf %lf %lf %lf </Line>\n", fx[i], fy[i], fx[i], fy[i]); } fprintf (fp2, "</Fixedpointlist>\n"); fprintf (fp2, "<Loadpointlist>\n"); for (i = 1; i <= loadn; i++) { fprintf (fp2, "<Point> %lf %lf </Point>\n", lx[i], ly[i]); } fprintf (fp2, "</Loadpointlist>\n"); fprintf (fp2, "<Measuredpointlist>\n"); for (i = 1; i <= measn; i++) { fprintf (fp2, "<Point> %lf %lf </Point>\n", mx[i], my[i]); } fprintf (fp2, "</Measuredpointlist>\n"); fprintf (fp2, "<Holepointlist>\n"); for (i = 1; i <= holen; i++) { fprintf (fp2, "<Point> %lf %lf </Point>\n", hx[i], hy[i]); } fprintf (fp2, "</Holepointlist>\n"); fprintf (fp2, "</Geometry>\n"); fprintf (fp2, "</Berkeley:DDA>\n"); fclose (fp2); free (jx1); free (jy1); free (jx2); free (jy2); free (type); return; } #ifdef STANDALONE /** * Standalone version of the dxf reader will translate from * dxf to ddaml from the commandline. * * Compile in cygwin using: * gcc -o dxf dxf.c -DSTANDALONE -I../include * * Run it like this: * ./dxf < infile.dxf */ int main (int argc, char **argv) { dxf_read_file (stdin, "foobar.geo"); return 0; } #endif |
From: David M. D. <do...@us...> - 2006-07-01 05:27:14
|
Update of /cvsroot/dda/ntdda In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv10672 Modified Files: ntdda.dsp Log Message: Moved dxf code to it's own file. This file can later form the basis for an entire dxf module. Index: ntdda.dsp =================================================================== RCS file: /cvsroot/dda/ntdda/ntdda.dsp,v retrieving revision 1.39 retrieving revision 1.40 diff -C2 -d -r1.39 -r1.40 *** ntdda.dsp 2 Jun 2006 18:47:37 -0000 1.39 --- ntdda.dsp 1 Jul 2006 05:27:09 -0000 1.40 *************** *** 452,455 **** --- 452,459 ---- # Begin Source File + SOURCE=.\src\dxf.c + # End Source File + # Begin Source File + SOURCE=.\src\geomddaml.c # End Source File |
From: David M. D. <do...@us...> - 2006-07-01 05:25:58
|
Update of /cvsroot/dda/ntdda/include In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv9933 Added Files: dxf.h Log Message: Moved dxf code to it's own file. This file can later form the basis for an entire dxf module. --- NEW FILE: dxf.h --- /* * dxf reading for DDA. */ #ifndef __DXF_H__ #define __DXF_H__ #ifdef __cplusplus extern "C" { #endif #if 0 } #endif void dxf_read_file (FILE * fp1, char * geofilename); #endif /* __DXF_H__ */ |
From: David M. D. <do...@us...> - 2006-07-01 05:25:30
|
Update of /cvsroot/dda/ntdda/src/win32gui In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv9891/win32gui Modified Files: winmain.c Log Message: Moved dxf code to it's own file. This file can later form the basis for an entire dxf module. Index: winmain.c =================================================================== RCS file: /cvsroot/dda/ntdda/src/win32gui/winmain.c,v retrieving revision 1.40 retrieving revision 1.41 diff -C2 -d -r1.40 -r1.41 *** winmain.c 7 Jun 2006 15:50:30 -0000 1.40 --- winmain.c 1 Jul 2006 05:25:26 -0000 1.41 *************** *** 29,33 **** #include <htmlhelp.h> #include <tchar.h> ! #include "math.h" --- 29,33 ---- #include <htmlhelp.h> #include <tchar.h> ! #include <math.h> *************** *** 39,43 **** #include "toolbar.h" #include "statusbar.h" ! #include "runstates.h" --- 39,44 ---- #include "toolbar.h" #include "statusbar.h" ! #include "runstates.h" ! #include "dxf.h" *************** *** 62,67 **** ! #define ABOUT "UC Berkeley DDA for Windows 95/NT(unstable),\n", \ ! "$Id$\n", \ "by Mary M. MacLaughlin (Montana Tech), and Nicholas Sitar & David Doolin\n", \ "Department of Civil Engineering, Geotechnical Group\n", \ --- 63,68 ---- ! #define ABOUT "UC Berkeley DDA for Windows 95/NT,\n", \ ! "Limerick RC-1 (Version 1.5 rc1) \n", \ "by Mary M. MacLaughlin (Montana Tech), and Nicholas Sitar & David Doolin\n", \ "Department of Civil Engineering, Geotechnical Group\n", \ *************** *** 1709,1713 **** ! void readDXF(FILE * fp1) { --- 1710,1714 ---- ! #if 0 void readDXF(FILE * fp1) { *************** *** 2014,2017 **** --- 2015,2019 ---- } + #endif *************** *** 2062,2068 **** // and arcs will be recognized from dxf file fp1 = fopen(filepath.gfile,"r"); // Pass everything in to readDXF. ! readDXF(fp1); } --- 2064,2071 ---- // and arcs will be recognized from dxf file fp1 = fopen(filepath.gfile,"r"); + strcpy (filepath.gfile, strcat (filepath.rootname, ".geo")); // Pass everything in to readDXF. ! dxf_read_file(fp1,filepath.gfile); } |
From: David M. D. <do...@us...> - 2006-06-29 20:44:39
|
Update of /cvsroot/dda/ntdda/src In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv4653 Modified Files: analysisddaml.c Log Message: Fixed text node handling in ddaml analysis reading code. Index: analysisddaml.c =================================================================== RCS file: /cvsroot/dda/ntdda/src/analysisddaml.c,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** analysisddaml.c 2 Jun 2006 17:53:22 -0000 1.25 --- analysisddaml.c 29 Jun 2006 20:44:32 -0000 1.26 *************** *** 755,762 **** char * timehiststring; char * recordstring; ! cur = cur->children; ! fprintf(stderr,"Parsing load points\n"); while (cur != NULL) { --- 755,765 ---- char * timehiststring; char * recordstring; ! ! //ddaml_display_warning(cur->name); cur = cur->children; ! //fprintf(stderr,"Parsing load points\n"); ! //ddaml_display_warning("Parsing load points."); ! //ddaml_display_warning(cur->name); while (cur != NULL) { *************** *** 764,768 **** if ((!strcmp(cur->name, "Loadpoint")) ) { ! /* Get the size of this thing from the attribute value: */ /* FIXME: Segfaults if no attribute specified. Either output --- 767,772 ---- if ((!strcmp(cur->name, "Loadpoint")) ) { ! // TODO: Consider moving this to a function to make the inner ! // easier to read. /* Get the size of this thing from the attribute value: */ /* FIXME: Segfaults if no attribute specified. Either output *************** *** 813,822 **** parsepoints = 0; numloadpoints = 0; } else { /* Big problems. Something passed the validator that was * not supposed to pass. Do Something About It! ! */ ! ddaml_display_error("Validation failure in load point parsing." " Contact author.\n"); } --- 817,832 ---- parsepoints = 0; numloadpoints = 0; + } else if ((!strcmp(cur->name, "text")) ) { + // Uncomment the following to see how libxml handles text elements + // such as tabs and spaces. + //ddaml_display_warning("Text node."); } else { /* Big problems. Something passed the validator that was * not supposed to pass. Do Something About It! ! */ ! // TODO: Extract the file name and line number of ddaml file ! // so that the analyst can fix it. ! ddaml_display_warning("Unknown element in load point parsing." " Contact author.\n"); } *************** *** 1043,1047 **** //xmlDoValidityCheckingDefaultValue = 1; ! adata = ad; /** --- 1053,1059 ---- //xmlDoValidityCheckingDefaultValue = 1; ! adata = ad; ! ! ddaml_display_error = ad->display_error; /** |
From: David M. D. <do...@us...> - 2006-06-26 15:16:40
|
Update of /cvsroot/dda/ddadb In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv2065 Modified Files: README Added Files: entry_form.html Log Message: Started entry form for adding keywords through web browser. Index: README =================================================================== RCS file: /cvsroot/dda/ddadb/README,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** README 9 Jun 2006 17:15:45 -0000 1.4 --- README 26 Jun 2006 15:16:36 -0000 1.5 *************** *** 83,123 **** ======= The DDA Reference Web Application ========== ! All of the data for each paper can be manually ! entered in the mysql database using the mysql ! client, which is very inconvenient. Alternatively, ! the information can be formatted in SQL in a text ! file and loaded into the database from the command ! line. This is much more convenient, and allows ! the information to be archived using cvs immediately. ! To provide easy collaboration, each article in ! the database will be displayed on a single ! web page, which will be editable by registered ! users. This web page will be constructed using ! simple php scripts and likely some javascript ! to help control the display for convenience. ! The web application will resemble the Sugar ! CRM (http://www.sugarcrm.com) web application ! in this respect. ! Initially, Bibtex format reference entries will ! be exported to the web page. Later, registered ! users will be able to request a single bib file ! with all selected references in bibtex format. ! Exporting to different citation formats will ! be performed by plugins that can be written ! later by other people. ! ========== Using MySQL on sourceforge =========== ssh into shell acount as usual. ! Running the mysql command line client can be ! done using the following command, such that ! the variables are replaced with appropriate ! names: mysql -u MYSQL_USERNAME --database=MYSQL_DATABASE_NAME --host=MYSQL_HOST -p --- 83,155 ---- ======= The DDA Reference Web Application ========== ! All of the data for each paper can be manually entered in the mysql ! database using the mysql client, which is very inconvenient. ! Alternatively, the information can be formatted in SQL in a text file ! and loaded into the database from the command line. This is much more ! convenient, and allows the information to be archived using cvs immediately. ! To provide easy collaboration, each set of results in the database ! will be displayed on a single web page, which will be editable by ! registered users. This web page will be constructed using simple php ! scripts and likely some javascript to help control the display for ! convenience. The web application will resemble the Sugar CRM ! (http://www.sugarcrm.com) web application in this respect. It will ! probably be easier to require the user to select a single result for ! editing, which then is displayed on it's own web page. ! Initially, Bibtex format reference entries will be exported to the web ! page. Later, registered users will be able to request a single bib ! file with all selected references in bibtex format. Exporting to ! different citation formats will be performed by plugins that can be ! written later by other people. ! ========== Creating tables for cross-indexing ==== ! ! After the initial data is processed and entered into the database, ! other scripts can be invoked to create tables corresponding to ! different venues, such as ICADD conferences, etc. Indexing can also ! be performed at a later time, after all the raw data has been entered. ! ! ! =========== Registering external users =========== ! ! ! The biggest value of the system is allowing external users to manually ! enter data using web forms. Users of the database system typically ! won't have accounts on sourceforge, so the registrations have to be ! handled within the web application with either files or having a ! database table that handles all the username and password information. ! From the sourceforge side, all the statements will be handled as rw ! account user. It would be handy to have each entry in the database ! tagged with username of the person who last modified the entry. ! ! ! The data entered using the form ! will have to backed up as discussed below. ! ! ! ========== Backing up the database =============== ! ! Once the system is online, data will be entered into the system by ! users not associated with sourceforge or the dda project. Two things ! need to be dealt with here: users not associated with sourceforge or ! the dda project. Two things need to be dealt with here: 1. Data ! entered by registered users will need to be extracted from the ! database so that it can be stored in cvs. 2. The entire database ! needs to be backed up on a regular basis. ! ! ! ========== Using MySQL on sourceforge ============ ssh into shell acount as usual. ! Running the mysql command line client can be done using the following ! command, such that the variables are replaced with appropriate names: ! mysql -u MYSQL_USERNAME --database=MYSQL_DATABASE_NAME --host=MYSQL_HOST -p + + --- NEW FILE: entry_form.html --- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="generator" content= "HTML Tidy for Cygwin (vers 1st September 2004), see www.w3.org" /> <title>DDA Reference Entry Form</title> </head> <body> <h1>DDA Reference Entry Form</h1> <form action="http://dda.sf.net/keyword.php" method= "post" target="inlineframe"> <h3>Keyword entry form</h3> <p>Enter key words and phrases separated by commas for the DDA article [title] by authors [author] in the box below: </p> <textarea name="text" rows="12" cols="80"> </textarea> <br /> <input value="Enter Keywords:" type="submit" /> <input value= "Reset form" type="reset" /> Display MathML: <input name="type" value="xml" checked="checked" type="radio" /> Show MathML code: <input name="type" value= "prettyprint" type="radio" /></form> <hr /> <address><a href="mailto:dav...@gm..."></a></address> <!-- Created: Sun Jun 25 13:48:16 Pacific Standard Time 2006 --> <!-- hhmts start --> Last modified: Sun Jun 25 14:00:21 Pacific Standard Time 2006 <!-- hhmts end --> </body> </html> |
From: David M. D. <do...@us...> - 2006-06-26 15:13:18
|
Update of /cvsroot/dda/htdocs/refs In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv629 Modified Files: icadd1.html index.php Log Message: Improved html bib files, added comments to bib parsing source. Index: index.php =================================================================== RCS file: /cvsroot/dda/htdocs/refs/index.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** index.php 16 Jun 2006 03:01:03 -0000 1.3 --- index.php 26 Jun 2006 15:13:12 -0000 1.4 *************** *** 23,27 **** <ul> <li><a href="./icadd1.html">ICADD-1</a> </li> ! <li><a href="./icadd1.html">ICADD-21</a> </li> <li><a href="./icadd1.html">ICADD-3</a> </li> <li><a href="./icadd1.html">ICADD-4</a> </li> --- 23,27 ---- <ul> <li><a href="./icadd1.html">ICADD-1</a> </li> ! <li><a href="./icadd1.html">ICADD-2</a> </li> <li><a href="./icadd1.html">ICADD-3</a> </li> <li><a href="./icadd1.html">ICADD-4</a> </li> Index: icadd1.html =================================================================== RCS file: /cvsroot/dda/htdocs/refs/icadd1.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** icadd1.html 12 Jun 2006 15:57:10 -0000 1.1 --- icadd1.html 26 Jun 2006 15:13:12 -0000 1.2 *************** *** 15,19 **** --- 15,216 ---- <TABLE CELLPADDING=5><TR><TD ALIGN=LEFT><FONT SIZE=+2><B>Topics:</B></FONT></TD> <TD><TABLE CELLPADDING=10> + <TR><TD><A HREF="#topic0"> ICADD 1</A></TD> + <TD></TD><TD></TD></TR> </TABLE></TD></TR></TABLE></CENTER><P><HR> + <A NAME=topic0></A> + <HR><H3>ICADD 1</H3> + + S. J. Chao and C. S. Chang. + <B>Discrete element analysis for limit equilibrium problems in geotechnical engineering.</B> + 1995. + in <I>Proceedings of the First International Conference on Analysis of Discontinuous Deformation,</I> pages 337-359. + National Central University. + Chungli, Taiwan ROC. + <P> + + C. S. Chang. + <B>Recent advances in granular mechanics.</B> + 1995. + in <I>Proceedings of the First International Conference on Analysis of Discontinuous Deformation,</I> pages 298-310. + National Central University. + Chungli, Taiwan ROC. + <P> + + C.-T. Chang. + <B>Nonlinear dynamic discontinuous deformation analysis with finite element mesh in each block.</B> + 1995. + in <I>Proceedings of the First International Conference on Analysis of Discontinuous Deformation,</I> pages 395-419. + National Central University. + Chungli, Taiwan ROC. + <P> + + S. Chen and J. C. Chern and C. Y. Koo. + <B>Study on performance of tunnel near slope by DDA.</B> + 1995. + in <I>Proceedings of the First International Conference on Analysis of Discontinuous Deformation,</I> pages 109-123. + National Central University. + Chungli, Taiwan ROC. + <P> + + Y.-J. Chiou and J.-C. Tzeng and M.-J. Lin. + <B>Discontinuous deformation analysis for masonry structures.</B> + 1995. + in <I>Proceedings of the First International Conference on Analysis of Discontinuous Deformation,</I> pages 288-297. + National Central University. + Chungli, Taiwan ROC. + <P> + + A.-B. Huang and M.-C. Hsiao and Y.-C. Lu. + <B>DDA simulation of a graded particle assembly under shear.</B> + 1995. + in <I>Proceedings of the First International Conference on Analysis of Discontinuous Deformation,</I> pages 360-372. + National Central University. + Chungli, Taiwan ROC. + <P> + + T.-K. Huang. + <B>The discontinuous deformation analysis of ``H'' block retaining wall.</B> + 1995. + in <I>Proceedings of the First International Conference on Analysis of Discontinuous Deformation,</I> pages 274-287. + National Central University. + Chungli, Taiwan ROC. + <P> + + L. R. Jing. + <B>A 3D constitutive model for rock joints and and DEM analysis.</B> + 1995. + in <I>Proceedings of the First International Conference on Analysis of Discontinuous Deformation,</I> pages 311-325. + National Central University. + Chungli, Taiwan ROC. + <P> + + T. C. ke. + <B>DDA combined with artificial joints concept.</B> + 1995. + in <I>Proceedings of the First International Conference on Analysis of Discontinuous Deformation,</I> pages 124-139. + National Central University. + Chungli, Taiwan ROC. + <P> + + T.-C. Ke. + <B>Modification of DDA with respect to rigid body rotation.</B> + 1995. + in <I>Proceedings of the First International Conference on Analysis of Discontinuous Deformation,</I> pages 260-273. + National Central University. + Chungli, Taiwan ROC. + <P> + + C. Y. Koo and J. C. Chern and S. Chen. + <B>Development of second order displacement function for DDA.</B> + 1995. + in <I>Proceedings of the First International Conference on Analysis of Discontinuous Deformation,</I> pages 91-108. + National Central University. + Chungli, Taiwan ROC. + <P> + + C.-L. Liao and D.-H. Yang. + <B>Nonlinear upper bound and lower bound analysis model for granular mechanics.</B> + 1995. + in <I>Proceedings of the First International Conference on Analysis of Discontinuous Deformation,</I> pages 326-336. + National Central University. + Chungli, Taiwan ROC. + <P> + + C. T. Lin and B. Amadei and S. Ouyang and C. Huang. + <B>Development of fracturing algorithms for jointed rock masses with discontinuous deformation analysis.</B> + 1995. + in <I>Proceedings of the First International Conference on Analysis of Discontinuous Deformation,</I> pages 64-90. + National Central University. + Chungli, Taiwan ROC. + <P> + + D. Lin. + <B>Discontinuous modeling and rock mass instability problems.</B> + 1995. + in <I>Proceedings of the First International Conference on Analysis of Discontinuous Deformation,</I> pages 48-63. + National Central University. + Chungli, Taiwan ROC. + <P> + + J. S. Lin. + <B>Continuous and discontinuous analysis using the manifold method.</B> + 1995. + in <I>Proceedings of the First International Conference on Analysis of Discontinuous Deformation,</I> pages 223-241. + National Central University. + Chungli, Taiwan ROC. + <P> + + A. Munjiza and D. J. R. Owen and G. J. Huang. + <B>Modeling aspects of discrete/finite element technology in continuum and fracture.</B> + 1995. + in <I>Proceedings of the First International Conference on Analysis of Discontinuous Deformation,</I> pages 164-186. + National Central University. + Chungli, Taiwan ROC. + <P> + + Y. Ohnishi and G. Chen and S. Miki. + <B>Recent development of DDA in rock mechanics.</B> + 1995. + in <I>Proceedings of the First International Conference on Analysis of Discontinuous Deformation,</I> pages 26-47. + National Central University. + Chungli, Taiwan ROC. + <P> + + G. H. Shi. + <B>Simplex integration for manifold method and discontinuous deformation analysis.</B> + 1995. + in <I>Proceedings of the First International Conference on Analysis of Discontinuous Deformation,</I> pages 1-25. + National Central University. + Chungli, Taiwan ROC. + <P> + + G. H. Shi. + <B>Numerical manifold method.</B> + 1995. + in <I>Proceedings of the First International Conference on Analysis of Discontinuous Deformation,</I> pages 187-222. + National Central University. + Chungli, Taiwan ROC. + <P> + + K. K. Shyu and R. Salami. + <B>Nodal-based discontinuous deformation analysis with four node isoparametric finite element mesh.</B> + 1995. + in <I>Proceedings of the First International Conference on Analysis of Discontinuous Deformation,</I> pages 373-394. + National Central University. + Chungli, Taiwan ROC. + <P> + + E. C. Ting and Y.-K. Wang and A. Pan. + <B>Algorithm for the transition from continuous to discontinuous and free bodies in finite element failure analysis.</B> + 1995. + in <I>Proceedings of the First International Conference on Analysis of Discontinuous Deformation,</I> pages 140-163. + National Central University. + Chungli, Taiwan ROC. + <P> + + F. Tsai. + <B>Formulation and solution scheme of the nonlinear contact problem in the DDA method.</B> + 1995. + in <I>Proceedings of the First International Conference on Analysis of Discontinuous Deformation,</I> pages 242-259. + National Central University. + Chungli, Taiwan ROC. + <P> + + J. S. Tsai and W. C. Wang. + <B>Dynamic responses of sliding structure subject to seismic excitation.</B> + 1995. + in <I>Proceedings of the First International Conference on Analysis of Discontinuous Deformation,</I> pages 420-432. + National Central University. + Chungli, Taiwan ROC. + <P> + + C.-Y. Wang and J. Sheng and M.-H. Chen. + <B>Dynamic-contact analysis scheme applied in the DDA method.</B> + 1995. + in <I>Proceedings of the First International Conference on Analysis of Discontinuous Deformation,</I> pages 433-459. + National Central University. + Chungli, Taiwan ROC. + <P> + <HR> <ADDRESS><CENTER><A HREF="http://www.litech.org/~wkiri/bib2html/">doolin</A>< Email: <A HREF="mailto:do...@li....">do...@li....</A> ></ADDRESS> |
From: David M. D. <do...@us...> - 2006-06-26 15:13:17
|
Update of /cvsroot/dda/htdocs/refs/src In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv629/src Modified Files: Makefile Log Message: Improved html bib files, added comments to bib parsing source. Index: Makefile =================================================================== RCS file: /cvsroot/dda/htdocs/refs/src/Makefile,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Makefile 8 Jun 2006 19:36:40 -0000 1.3 --- Makefile 26 Jun 2006 15:13:12 -0000 1.4 *************** *** 2,8 **** --- 2,10 ---- COMMON = getopt1.c getopt.c args.c + ### Creates entries for proceedings bp: gcc -o bp bibparse.c $(COMMON) -L/usr/local/lib -lbtparse + ### Pulls out cite_key, last name, first name dn: dumpnames.c gcc -o dn dumpnames.c $(COMMON) -L/usr/local/lib -lbtparse *************** *** 10,12 **** clean: ! rm -rf bp.exe *~ *.o dn.exe --- 12,14 ---- clean: ! rm -rf bp.exe *~ *.o dn.exe *.stackdump |
From: David M. D. <do...@us...> - 2006-06-26 15:12:23
|
Update of /cvsroot/dda/pub/bibtex In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv32618 Modified Files: Makefile header.txt icadd1.bib icadd2.bib icadd3.bib icadd4.bib icadd5.bib icadd6.bib icadd7.bib Log Message: Cleaned up files and make files for bib2html, fixed Makefile. Index: icadd4.bib =================================================================== RCS file: /cvsroot/dda/pub/bibtex/icadd4.bib,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** icadd4.bib 12 Jun 2006 15:55:45 -0000 1.2 --- icadd4.bib 26 Jun 2006 15:12:15 -0000 1.3 *************** *** 1,3 **** --- 1,8 ---- + % Name: David M. Doolin + % Title: DDA Bibliography + % URL: http://dda.sourceforge.net/ + % Email: david.doolin%gmail.com + @InProceedings{bagi:k2001, Index: icadd2.bib =================================================================== RCS file: /cvsroot/dda/pub/bibtex/icadd2.bib,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** icadd2.bib 12 Jun 2006 15:55:45 -0000 1.2 --- icadd2.bib 26 Jun 2006 15:12:15 -0000 1.3 *************** *** 1,3 **** --- 1,8 ---- + % Name: David M. Doolin + % Title: DDA Bibliography + % URL: http://dda.sourceforge.net/ + % Email: david.doolin%gmail.com + %%% ICADD 2 %%% Index: icadd3.bib =================================================================== RCS file: /cvsroot/dda/pub/bibtex/icadd3.bib,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** icadd3.bib 12 Jun 2006 15:55:45 -0000 1.2 --- icadd3.bib 26 Jun 2006 15:12:15 -0000 1.3 *************** *** 1,3 **** --- 1,8 ---- + % Name: David M. Doolin + % Title: DDA Bibliography + % URL: http://dda.sourceforge.net/ + % Email: david.doolin%gmail.com + @String{TITLE= "ICADD-3: Third International Conference on Analysis of Discontinuous Deformation---From theory to practice"} *************** *** 592,594 **** OPTnote = {}, OPTannote = {} ! } \ No newline at end of file --- 597,599 ---- OPTnote = {}, OPTannote = {} ! } Index: icadd1.bib =================================================================== RCS file: /cvsroot/dda/pub/bibtex/icadd1.bib,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** icadd1.bib 12 Jun 2006 15:55:45 -0000 1.3 --- icadd1.bib 26 Jun 2006 15:12:15 -0000 1.4 *************** *** 1,562 **** ! ! @String{TITLE= "Proceedings of the First International Conference on Analysis of Discontinuous Deformation"} ! ! @InProceedings{chao:sj1995, ! author = {S.-J. Chao and C. S. Chang}, ! title = {Discrete element analysis for limit equilibrium problems in geotechnical engineering}, ! booktitle = TITLE, ! OPTcrossref = {}, ! OPTkey = {}, ! pages = {337-359}, [...1105 lines suppressed...] ! author = {C.-Y. Wang and J. Sheng and M.-H. Chen}, ! title = {Dynamic-contact analysis scheme applied ! in the {DDA} method}, ! booktitle = TITLE, ! OPTcrossref = {}, ! OPTkey = {}, ! pages = {433-459}, ! year = {1995}, ! editor = {J. C. Li and C.-Y. Wang and J. Sheng}, ! OPTvolume = {}, ! OPTnumber = {}, ! OPTseries = {}, ! address = {Chungli, Taiwan ROC}, ! month = {Dec. 21-23}, ! organization = {National Central University}, ! OPTpublisher = {}, ! OPTnote = {}, ! OPTannote = {}, ! comment = {} ! } Index: header.txt =================================================================== RCS file: /cvsroot/dda/pub/bibtex/header.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** header.txt 12 Jun 2006 15:55:45 -0000 1.1 --- header.txt 26 Jun 2006 15:12:15 -0000 1.2 *************** *** 1,5 **** - This is stub header file for inclusion into - html files emitted by bib2html. Needs - the usual header information, and - some sort of creative commons license. \ No newline at end of file --- 1,5 ---- + % Name: David M. Doolin + % Title: DDA Bibliography + % URL: http://dda.sourceforge.net/ + % Email: david.doolin%gmail.com Index: Makefile =================================================================== RCS file: /cvsroot/dda/pub/bibtex/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile 12 Jun 2006 15:55:45 -0000 1.1 --- Makefile 26 Jun 2006 15:12:15 -0000 1.2 *************** *** 2,10 **** # Makefile for converting bibtex files to html. ! html: ! bib2html icadd2.bib clean: ! rm -rf *~ \ No newline at end of file --- 2,29 ---- # Makefile for converting bibtex files to html. + # TODO: Add support for automatically copying the + # generated bib files to the correct place in the + # htdocs directory. + + .SUFFIXES : .bib .html ! ! HTML = icadd1.html \ ! icadd2.html \ ! icadd3.html \ ! icadd4.html \ ! icadd5.html \ ! ifdda.html ! ! ! all: $(HTML) ! ! ! ! .bib.html: ! dos2unix $*.bib ! bib2html $*.bib clean: ! rm -rf *~ $(HTML) Index: icadd7.bib =================================================================== RCS file: /cvsroot/dda/pub/bibtex/icadd7.bib,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** icadd7.bib 8 Jun 2006 15:55:44 -0000 1.1 --- icadd7.bib 26 Jun 2006 15:12:16 -0000 1.2 *************** *** 1,2 **** --- 1,7 ---- + % Name: David M. Doolin + % Title: DDA Bibliography + % URL: http://dda.sourceforge.net/ + % Email: david.doolin%gmail.com + Index: icadd5.bib =================================================================== RCS file: /cvsroot/dda/pub/bibtex/icadd5.bib,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** icadd5.bib 12 Jun 2006 15:55:45 -0000 1.2 --- icadd5.bib 26 Jun 2006 15:12:16 -0000 1.3 *************** *** 1,3 **** --- 1,8 ---- + % Name: David M. Doolin + % Title: DDA Bibliography + % URL: http://dda.sourceforge.net/ + % Email: david.doolin%gmail.com + @InProceedings{aiqing:w2002, Index: icadd6.bib =================================================================== RCS file: /cvsroot/dda/pub/bibtex/icadd6.bib,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** icadd6.bib 1 May 2006 18:03:31 -0000 1.1 --- icadd6.bib 26 Jun 2006 15:12:16 -0000 1.2 *************** *** 1,3 **** --- 1,8 ---- + % Name: David M. Doolin + % Title: DDA Bibliography + % URL: http://dda.sourceforge.net/ + % Email: david.doolin%gmail.com + @string{BOOKTITLE="Development and Application of Discontinuous Modelling for Rock |
From: David M. D. <do...@us...> - 2006-06-19 18:11:17
|
Update of /cvsroot/dda/ddainstall/dev/examples In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv7373 Modified Files: clean.sh Log Message: Fixed shell script. Index: clean.sh =================================================================== RCS file: /cvsroot/dda/ddainstall/dev/examples/clean.sh,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** clean.sh 19 Jun 2006 17:27:14 -0000 1.1 --- clean.sh 19 Jun 2006 18:11:09 -0000 1.2 *************** *** 1,30 **** #!/bin/sh ! rm *.res ! rm *.blk ! rm Ws_ftp.log ! rm *.txt ! rm *.log ! rm *.err ! rm *.disp ! rm *.grf ! rm *.meas ! rm *.por ! rm *.time ! rm *.rand ! rm *.par ! rm *.area ! rm *.grav ! rm *.replay ! rm block.in ! rm *.dat ! rm *.png ! rm *.html ! rm *.gnu ! rm *.fig ! rm *.spy1 ! rm *.spy2 ! rm *.cut ! rm *.log ! rm *.m ! rm *~ --- 1,32 ---- #!/bin/sh ! rm -rf -rf output ! ! rm -rf *.res ! rm -rf *.blk ! rm -rf Ws_ftp.log ! rm -rf *.txt ! rm -rf *.log ! rm -rf *.err ! rm -rf *.disp ! rm -rf *.grf ! rm -rf *.meas ! rm -rf *.por ! rm -rf *.time ! rm -rf *.rand ! rm -rf *.par ! rm -rf *.area ! rm -rf *.grav ! rm -rf *.replay ! rm -rf block.in ! rm -rf *.dat ! rm -rf *.png ! rm -rf *.html ! rm -rf *.gnu ! rm -rf *.fig ! rm -rf *.spy1 ! rm -rf *.spy2 ! rm -rf *.cut ! rm -rf *.log ! rm -rf *.m ! rm -rf *~ |
From: David M. D. <do...@us...> - 2006-06-19 17:27:18
|
Update of /cvsroot/dda/ddainstall/dev/examples In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv17733/examples Added Files: clean.sh Log Message: Cleanup and ignore files updated. --- NEW FILE: clean.sh --- #!/bin/sh rm *.res rm *.blk rm Ws_ftp.log rm *.txt rm *.log rm *.err rm *.disp rm *.grf rm *.meas rm *.por rm *.time rm *.rand rm *.par rm *.area rm *.grav rm *.replay rm block.in rm *.dat rm *.png rm *.html rm *.gnu rm *.fig rm *.spy1 rm *.spy2 rm *.cut rm *.log rm *.m rm *~ |
From: David M. D. <do...@us...> - 2006-06-19 17:27:17
|
Update of /cvsroot/dda/ddainstall/dev In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv17733 Modified Files: .cvsignore Log Message: Cleanup and ignore files updated. Index: .cvsignore =================================================================== RCS file: /cvsroot/dda/ddainstall/dev/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** .cvsignore 18 Dec 2004 14:27:31 -0000 1.2 --- .cvsignore 19 Jun 2006 17:27:14 -0000 1.3 *************** *** 1,2 **** --- 1,3 ---- InstallDDA.exe InstallDDA.zip + *.zip |
From: David M. D. <do...@us...> - 2006-06-19 17:25:18
|
Update of /cvsroot/dda/ddainstall/dev/examples In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv11322/examples Modified Files: lineslope.ana tunnel.ana Log Message: Version 1.6 released. Index: tunnel.ana =================================================================== RCS file: /cvsroot/dda/ddainstall/dev/examples/tunnel.ana,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** tunnel.ana 16 May 2003 05:03:02 -0000 1.1.1.1 --- tunnel.ana 19 Jun 2006 17:25:12 -0000 1.2 *************** *** 4,8 **** <!-- Analysis section of document --> ! <Analysis type="dynamic"> <Analysistype type="static"/> --- 4,8 ---- <!-- Analysis section of document --> ! <Analysis type="static"> <Analysistype type="static"/> *************** *** 12,19 **** </Gravity> ! <Autotimestep flag="yes"/> ! <Autopenalty flag="yes"/> <Planestrain flag="no"/> ! <Numtimesteps timesteps="100"/> <Maxtimestep maxtimestep="0.01"/> <OCLimit maxopenclose="8"/> --- 12,19 ---- </Gravity> ! <Autotimestep flag="no"/> ! <Autopenalty flag="no" pfactor="1"/> <Planestrain flag="no"/> ! <Numtimesteps timesteps="1000"/> <Maxtimestep maxtimestep="0.01"/> <OCLimit maxopenclose="8"/> *************** *** 39,42 **** --- 39,43 ---- <Youngsmod> 10000000 </Youngsmod> <Poissonratio> .30 </Poissonratio> + <Damping> 0.0 </Damping> <Istress> 0 0 0 </Istress> <Ivelocity> 0 0 0 </Ivelocity> *************** *** 46,50 **** <Jointproperties type="1"> ! <Friction> 10. </Friction> <Cohesion>0.</Cohesion> <Tensile>0.</Tensile> --- 47,51 ---- <Jointproperties type="1"> ! <Friction> 0. </Friction> <Cohesion>0.</Cohesion> <Tensile>0.</Tensile> Index: lineslope.ana =================================================================== RCS file: /cvsroot/dda/ddainstall/dev/examples/lineslope.ana,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** lineslope.ana 16 May 2003 05:03:02 -0000 1.1.1.1 --- lineslope.ana 19 Jun 2006 17:25:12 -0000 1.2 *************** *** 4,10 **** <!-- Analysis section of document --> ! <Analysis type="dynamic"> ! <Analysistype type="dynamic"/> <Rotation type="linear"/> <Gravity flag="no"> --- 4,10 ---- <!-- Analysis section of document --> ! <Analysis type="static"> ! <Analysistype type="static"/> <Rotation type="linear"/> <Gravity flag="no"> |
From: David M. D. <do...@us...> - 2006-06-19 17:25:15
|
Update of /cvsroot/dda/ddainstall/dev/bin In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv11322/bin Modified Files: ntdda.exe Log Message: Version 1.6 released. Index: ntdda.exe =================================================================== RCS file: /cvsroot/dda/ddainstall/dev/bin/ntdda.exe,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvs4QyQel and /tmp/cvsQfpNfc differ |
From: David M. D. <do...@us...> - 2006-06-19 17:25:15
|
Update of /cvsroot/dda/ddainstall/dev In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv11322 Modified Files: ddainst.nsi Log Message: Version 1.6 released. Index: ddainst.nsi =================================================================== RCS file: /cvsroot/dda/ddainstall/dev/ddainst.nsi,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ddainst.nsi 5 Apr 2006 16:15:12 -0000 1.2 --- ddainst.nsi 19 Jun 2006 17:25:11 -0000 1.3 *************** *** 7,11 **** #Define Version !define V_MAJOR 1 ! !define V_MINOR 5 #General Installer Configuration --- 7,11 ---- #Define Version !define V_MAJOR 1 ! !define V_MINOR 6 #General Installer Configuration |
From: David M. D. <do...@us...> - 2006-06-16 03:01:08
|
Update of /cvsroot/dda/htdocs/refs In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv25708 Modified Files: index.php Log Message: Fixed some html. Index: index.php =================================================================== RCS file: /cvsroot/dda/htdocs/refs/index.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** index.php 16 Jun 2006 02:45:22 -0000 1.2 --- index.php 16 Jun 2006 03:01:03 -0000 1.3 *************** *** 22,33 **** <p>The ICADD Series</p> <ul> ! <li><a href=./icadd1.html">ICADD-1</a> </li> ! <li><a href=./icadd1.html">ICADD-21</a> </li> ! <li><a href=./icadd1.html">ICADD-3</a> </li> ! <li><a href=./icadd1.html">ICADD-4</a> </li> ! <li><a href=./icadd1.html">ICADD-5</a> </li> <!-- ! <li><a href=./icadd1.html">ICADD-6</a> </li> ! <li><a href=./icadd1.html">ICADD-7</a> </li> --> </ul> --- 22,33 ---- <p>The ICADD Series</p> <ul> ! <li><a href="./icadd1.html">ICADD-1</a> </li> ! <li><a href="./icadd1.html">ICADD-21</a> </li> ! <li><a href="./icadd1.html">ICADD-3</a> </li> ! <li><a href="./icadd1.html">ICADD-4</a> </li> ! <li><a href="./icadd1.html">ICADD-5</a> </li> <!-- ! <li><a href="./icadd1.html">ICADD-6</a> </li> ! <li><a href="./icadd1.html">ICADD-7</a> </li> --> </ul> |
From: David M. D. <do...@us...> - 2006-06-16 02:45:27
|
Update of /cvsroot/dda/htdocs/refs In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv20250 Modified Files: index.php Log Message: Added links for the ICADD references. Index: index.php =================================================================== RCS file: /cvsroot/dda/htdocs/refs/index.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** index.php 31 Aug 2004 16:21:33 -0000 1.1 --- index.php 16 Jun 2006 02:45:22 -0000 1.2 *************** *** 18,21 **** --- 18,35 ---- <p> Some <a href="./ddareflist.html">DDA references</a>. + </p> + + <p>The ICADD Series</p> + <ul> + <li><a href=./icadd1.html">ICADD-1</a> </li> + <li><a href=./icadd1.html">ICADD-21</a> </li> + <li><a href=./icadd1.html">ICADD-3</a> </li> + <li><a href=./icadd1.html">ICADD-4</a> </li> + <li><a href=./icadd1.html">ICADD-5</a> </li> + <!-- + <li><a href=./icadd1.html">ICADD-6</a> </li> + <li><a href=./icadd1.html">ICADD-7</a> </li> + --> + </ul> </body> |
From: David M. D. <do...@us...> - 2006-06-12 15:59:16
|
Update of /cvsroot/dda/htdocs/refs In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv25813 Added Files: ifdda.html Log Message: Start of icadd html files. --- NEW FILE: ifdda.html --- <HTML><HEAD> <TITLE>doolin's Bibliography</TITLE> </HEAD> <BODY BGCOLOR=#FFFFFF> <CENTER><FONT SIZE=+1> doolin : Bibliography<BR></FONT> <I>Automatically generated from a bibfile<BR> If you notice any errors or broken links, please let me know:<BR><A HREF="mailto:do...@li....">do...@li....</A></I><P> </CENTER><P> <HR> <!-- Table of contents --> <CENTER> <TABLE CELLPADDING=5><TR><TD ALIGN=LEFT><FONT SIZE=+2><B>Topics:</B></FONT></TD> <TD><TABLE CELLPADDING=10> </TABLE></TD></TR></TABLE></CENTER><P><HR> A. D. Alexeev and V. N. Revva and G. K. Astrov-Shumilov and Y. B. Grayadushchii and V. G. Khamulyak. 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA</I>. TSI Press, Albuquerque, NM. <P> B. Amadei and C. Lin and J. Dwyer. <B>Recent Extensions to the DDA method.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 1-30. TSI Press, Albuquerque, NM. <P> Y. Cai and G-P. Liang and G-H. Shi and N. G. W. Cook. <B>Studying an impact problem by using LDDA method.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 288-294. TSI Press, Albuquerque, NM. <P> C.-T. Chang and P. J. M. Monteiro. <B>Reassessment of the St. Francis Dam failure using finite element meshed discontinuous deformation analysis.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 295-301. TSI Press, Albuquerque, NM. <P> G. Chen and S. Miki and Y. Ohnishi. <B>Practical improvements on DDA.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 302-309. TSI Press, Albuquerque, NM. <P> W. Chen and X. Ge and X. Gu and D. Geng. <B>Hybrid method for discontinuous analysis of rigif model and algorithm discussion.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 488-494. TSI Press, Albuquerque, NM. <P> C. S. Desai. <B>Disturbed state concept for modelling solids and discontinuities.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 31-43. TSI Press, Albuquerque, NM. <P> X. Dong and A. Wu and F. Ren. <B>A preliminary application of discontinuous deformation analysis (DDA) to the Three Gorges Dam project.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 310-317. TSI Press, Albuquerque, NM. <P> H. Hazarika and H. Matsuzawa. <B>Earth pressure analysis considering the stress discontinuity in the backfill.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 495-502. TSI Press, Albuquerque, NM. <P> R. A. Johnson and J. D. Bosman. <B>Realistic simulation of cave mining using distinct element procedures.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 503-511. TSI Press, Albuquerque, NM. <P> T.-C. Ke. <B>The issue of rigid body rotation in DDA.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 318-325. TSI Press, Albuquerque, NM. <P> T. C. Ke. <B>Artifical joint based DDA.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 326-333. TSI Press, Albuquerque, NM. <P> T. C. Ke. <B>Application of DDA to stability analysis of rock masses.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 334-341. TSI Press, Albuquerque, NM. <P> C. Y. Koo and J. C. Chern. <B>The development of DDA with third order displacement function.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 342-349. TSI Press, Albuquerque, NM. <P> G-P. Liang and C-G. Wang. <B>LDDA on High-speed catenary-pantograph systems.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 350-356. TSI Press, Albuquerque, NM. <P> C. Lin. <B>Numerical analysis of the effectiveness of roof truss in roadway.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 511-517. TSI Press, Albuquerque, NM. <P> H. C. Lin and T. X. Tran and R. B. Nelson. <B>Comparison of two different 2D algorithms for analyzing frictional block structures.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 357-364. TSI Press, Albuquerque, NM. <P> J. S. Lin and D.-H. Lee. <B>Manifold method using polynomial basis function of any order.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 365-372. TSI Press, Albuquerque, NM. <P> L. Liu. <B>Modeling aseismic fault slips and block deformation in northern china by DDA.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 373-382. TSI Press, Albuquerque, NM. <P> M. Y. Ma and M. Zaman and J. H. Zhou. <B>Discontinuous Deformation Analysis using the third-order displacement function.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 383-394. TSI Press, Albuquerque, NM. <P> M. M. MacLaughlin and N. Sitar. <B>Rigid body rotations in DDA.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 620-636. TSI Press, Albuquerque, NM. <P> A. Munjiza. <B>Combined finite-discrete element models for blasting and mining operations.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 511-517. TSI Press, Albuquerque, NM. <P> A. Munjiza and M. Schonauer and G. J. Huang. <B>Predictive modelling of mechanical contact with friction using discrete elements.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 518-524. TSI Press, Albuquerque, NM. <P> Y. Ohnishi and S. Miki. <B>Development of circular and elliptic disc elements for DDA.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 44-51. TSI Press, Albuquerque, NM. <P> J. M. Pei and Z. H. Lu. <B>An application of DDA to a jointed rock slope.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 395-400. TSI Press, Albuquerque, NM. <P> J. M. Pei. <B>The effects of energy loss in block bumping on discontinuous deformation.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 401-406. TSI Press, Albuquerque, NM. <P> N. Petrinic and D. R. J. Owen and A. Munjiza and N. Bicanic. <B>Predictive modelling of the failure and repair of masonry structures with granular backfill.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA</I>. TSI Press, Albuquerque, NM. <P> X. Qui. <B>Manifold method without use of penalty springs.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 407-414. TSI Press, Albuquerque, NM. <P> S. Ramakrishnan and M. Budhu and G. Frantziskonis. <B>Deformation and failure of granular material --- a lattice type model.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 543-550. TSI Press, Albuquerque, NM. <P> M. R. Salami and A. Shahbazi and M. Zaman and M. Zargham. <B>Determining contact stresses on potatos stored in bulk bins by using discontinuous deformation analysis.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 415-431. TSI Press, Albuquerque, NM. <P> T. Sasaki and S. Morikawa and D. Ishii and Y. Ohnishi and R. Yoshinaka. <B>Comparison with DDA and FEM by Jointed Rock Foundation models.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 432-439. TSI Press, Albuquerque, NM. <P> A. K. Sengupta and A. Belarbi. <B>Average stress-strain relationships of rebars in cracked RC panels.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 551-558. TSI Press, Albuquerque, NM. <P> G. H. Shi. <B>Manifold method.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 52-204. TSI Press, Albuquerque, NM. <P> G. H. Shi. <B>Simplex integration for manifold method, FEM, DDA and analytical solutions.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 205-262. TSI Press, Albuquerque, NM. <P> K. K. Shyu and M. R. Salami. <B>Stability of Bartlett Dam.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 440-445. TSI Press, Albuquerque, NM. <P> K. K. Shyu and M. R. Salami and A. Shahbazi. <B>Numerical modeling of deformable particles.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 446-453. TSI Press, Albuquerque, NM. <P> J. Singh and D. W. Airey and J. R. Booker and J. P. Carter. <B>Model studies of the bearing capacity of an orthogonally jointed medium.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 559-566. TSI Press, Albuquerque, NM. <P> P. A. Thomas and J. D. Bray and T-C. Ke. <B>Discontinuous Deformation Analysis for Soil Mechanics.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 454-461. TSI Press, Albuquerque, NM. <P> T. X. Tran and R. B. Nelson. <B>Analysis of disjoint 2D particle assemblies.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 567-577. TSI Press, Albuquerque, NM. <P> J. Vacek and E. Westman. <B>Experimental study of rock mass decomposition during slip.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 578-585. TSI Press, Albuquerque, NM. <P> C.-Y. Wang and C.-C. Chuang and J. Sheng. <B>Time integration theories for the DDA method with finite element meshes.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 263-287. TSI Press, Albuquerque, NM. <P> M. R. Yeung. <B>Analysis of three-hinged beam using DDA.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 462-469. TSI Press, Albuquerque, NM. <P> M. Zaman and I. Houssamy and M. R. Salami. <B>Nonlinear analysis of underreamed shafts.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 586-595. TSI Press, Albuquerque, NM. <P> S. Zhao and M. Reza Salami and M. S. Rahman. <B>Simulation of rock toppling failure using discontinuous deformation analysis.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 470-479. TSI Press, Albuquerque, NM. <P> X.-T. Zheng and X. Liu. <B>Analytical Model on the Contact Problem of Plane Elastic Blocks.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 596-603. TSI Press, Albuquerque, NM. <P> X. T. Zheng and X. Liu. <B>Analytical model on the contact problem of plane elastic blocks.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 596-603. TSI Press, Albuquerque, NM. <P> X. T. Zheng and X. Liu. <B>The static and dynamic solution of 2D block systems.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 604-611. TSI Press, Albuquerque, NM. <P> X. T. Zheng and X. Liu. <B>A parallel computing practice in block theory.</B> 1996. in <I>Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA,</I> pages 612-619. TSI Press, Albuquerque, NM. <P> <HR> <ADDRESS><CENTER><A HREF="http://www.litech.org/~wkiri/bib2html/">doolin</A>< Email: <A HREF="mailto:do...@li....">do...@li....</A> ></ADDRESS> </BODY> </HTML> |
From: David M. D. <do...@us...> - 2006-06-12 15:58:44
|
Update of /cvsroot/dda/htdocs/refs In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv25338 Added Files: icadd5.html Log Message: Start of icadd html files. --- NEW FILE: icadd5.html --- <HTML><HEAD> <TITLE>doolin's Bibliography</TITLE> </HEAD> <BODY BGCOLOR=#FFFFFF> <CENTER><FONT SIZE=+1> doolin : Bibliography<BR></FONT> <I>Automatically generated from a bibfile<BR> If you notice any errors or broken links, please let me know:<BR><A HREF="mailto:do...@li....">do...@li....</A></I><P> </CENTER><P> <HR> <!-- Table of contents --> <CENTER> <TABLE CELLPADDING=5><TR><TD ALIGN=LEFT><FONT SIZE=+2><B>Topics:</B></FONT></TD> <TD><TABLE CELLPADDING=10> </TABLE></TD></TR></TABLE></CENTER><P><HR> W. Aiqing and H. Zhengjia. <B>Stability analysis for rock blocks in Three Gorges Project.</B> 2002. in <I>Stability of Rock Structures---Proceedings of the Fifth International Conference on Analysis of Discontinuous Deformation,</I> pages 95-100. A. A. Balkema, Abingdon. <P> E. Rocamora Alverez. <B>Some approaches on the prediction of hillsides stability in karstic massif.</B> 2002. in <I>Stability of Rock Structures---Proceedings of the Fifth International Conference on Analysis of Discontinuous Deformation,</I> pages 101-106. A. A. Balkema, Abingdon. <P> T. Bangash and A. Munjiza. <B>Experimental validation of combined FEM/DEM simulation of R.C. beams under impact induced failure.</B> 2002. in <I>Stability of Rock Structures---Proceedings of the Fifth International Conference on Analysis of Discontinuous Deformation,</I> pages 165-170. A. A. Balkema, Abingdon. <P> S. Chen and Y.-N. Oh and D.-S. Jeng and L.-K. Chien. <B>Analysis of stress and displacement around a tunnel.</B> 2002. in <I>Stability of Rock Structures---Proceedings of the Fifth International Conference on Analysis of Discontinuous Deformation,</I> pages 107-112. A. A. Balkema, Abingdon. <P> Y. H. Hatzor and A. A. Arzi and M. Tsesarsky. <B>Realistic dynamic analysis of jointed rock slopes using DDA.</B> 2002. in <I>Stability of Rock Structures---Proceedings of the Fifth International Conference on Analysis of Discontinuous Deformation,</I> pages 47-56. A. A. Balkema, Abingdon. <P> T. Ishikawa and E. Sekine and Y. Ohnishi. <B>Shaking table tests of coarse granular materials with discontinuous deformation analysis.</B> 2002. in <I>Stability of Rock Structures---Proceedings of the Fifth International Conference on Analysis of Discontinuous Deformation,</I> pages 181-188. A. A. Balkema, Abingdon. <P> H. I. Jang and C. I. Lee. <B>Development of a three-dimensional discontinuous deformation analysis technique and its application to toppling failure.</B> 2002. in <I>Stability of Rock Structures---Proceedings of the Fifth International Conference on Analysis of Discontinuous Deformation,</I> pages 225-230. A. A. Balkema, Abingdon. <P> L. Jing and K.-B. Min and O, Stephansson. <B>Numerical models for coupled thermo-hydro-mechanical processes in fractured rock---continuum and discrete approaches.</B> 2002. in <I>Stability of Rock Structures---Proceedings of the Fifth International Conference on Analysis of Discontinuous Deformation,</I> pages 57-68. A. A. Balkema, Abingdon. <P> O. Katz and Z. Reches. <B>Pre-failure damage, time-dependent creep and strength variations of a brittle granite.</B> 2002. in <I>Stability of Rock Structures---Proceedings of the Fifth International Conference on Analysis of Discontinuous Deformation,</I> pages 189-194. A. A. Balkema, Abingdon. <P> D. Kumar and S. K. Das. <B>Experimental investigations into floor bearing strength of jointed and layered rock mass.</B> 2002. in <I>Stability of Rock Structures---Proceedings of the Fifth International Conference on Analysis of Discontinuous Deformation,</I> pages 87-94. A. A. Balkema, Abingdon. <P> M. Lu. <B>High-order manifold method with simplex integration.</B> 2002. in <I>Stability of Rock Structures---Proceedings of the Fifth International Conference on Analysis of Discontinuous Deformation,</I> pages 75-86. A. A. Balkema, Abingdon. <P> J. P. Morris and L. A. Glenn and F. E. Heuz'e and S. C. Blair. <B>Simulations of underground structures subjected to dynamic loading using the distinct element method.</B> 2002. in <I>Stability of Rock Structures---Proceedings of the Fifth International Conference on Analysis of Discontinuous Deformation,</I> pages 121-124. A. A. Balkema, Abingdon. <P> A. Munjiza and J. P. Latham. <B>Grand challenge of discontinuous deformation analysis.</B> 2002. in <I>Stability of Rock Structures---Proceedings of the Fifth International Conference on Analysis of Discontinuous Deformation,</I> pages 69-74. A. A. Balkema, Abingdon. <P> N. L. Ninis and A. K. Kakaliagos and H. Mouzakis and P. Carydis. <B>Numerical simulation of shear sliding effects at the connecting interface of two megalithic column drums.</B> 2002. in <I>Stability of Rock Structures---Proceedings of the Fifth International Conference on Analysis of Discontinuous Deformation,</I> pages 145-152. A. A. Balkema, Abingdon. <P> N. L. Ninis and S. K. Kourkourlis. <B>On determining appropriate parameters of mechanical strength for numeric simulation of building stones.</B> 2002. in <I>Stability of Rock Structures---Proceedings of the Fifth International Conference on Analysis of Discontinuous Deformation,</I> pages 153-164. A. A. Balkema, Abingdon. <P> Y.-N. Oh and D.-S. Jeng and S. Chen and L.-K. Chien. <B>A parametric study using discontinuous deformation analysis to model wave-induced seabed response.</B> 2002. in <I>Stability of Rock Structures---Proceedings of the Fifth International Conference on Analysis of Discontinuous Deformation,</I> pages 113-120. A. A. Balkema, Abingdon. <P> X.-C. Peng and H.-B. Tang. <B>Three-dimensional discontinuity network analysis.</B> 2002. in <I>Stability of Rock Structures---Proceedings of the Fifth International Conference on Analysis of Discontinuous Deformation,</I> pages 231-238. A. A. Balkema, Abingdon. <P> T. Scheldt and M. Lu and A. Myrvang. <B>Numerical analysis of Gj/ovik cavern: a comparison of continuous and discontinuous results by using Phase$^2$ and DDA.</B> 2002. in <I>Stability of Rock Structures---Proceedings of the Fifth International Conference on Analysis of Discontinuous Deformation,</I> pages 125-132. A. A. Balkema, Abingdon. <P> G.-H. Shi. <B>Single and multiple block limit equilibrium of key block method and discontinuous deformation analysis.</B> 2002. in <I>Stability of Rock Structures---Proceedings of the Fifth International Conference on Analysis of Discontinuous Deformation,</I> pages 3-46. A. A. Balkema, Abingdon. <P> J. Sulem and V. de Gennaro and M. Cerrolazo. <B>Continuum models with microstructure for discontinuous rock mass.</B> 2002. in <I>Stability of Rock Structures---Proceedings of the Fifth International Conference on Analysis of Discontinuous Deformation,</I> pages 215-224. A. A. Balkema, Abingdon. <P> M. Tsesarsky and Y. H. Hatzor and N. Sitar. <B>Dynamic block displacement prediction --- validation of DDA using analytical solutions and shaking table experiments.</B> 2002. in <I>Stability of Rock Structures---Proceedings of the Fifth International Conference on Analysis of Discontinuous Deformation,</I> pages 195-206. A. A. Balkema, Abingdon. <P> S. Wang and M. Lu. <B>Crack propogation modelling by numerical manifold method.</B> 2002. in <I>Stability of Rock Structures---Proceedings of the Fifth International Conference on Analysis of Discontinuous Deformation,</I> pages 207-214. A. A. Balkema, Abingdon. <P> M. R. Yeung and N. Sun and Q. H. Jiang. <B>A study of wedge stability physical models, block theory and three-dimensional discontinuous deformation analysis.</B> 2002. in <I>Stability of Rock Structures---Proceedings of the Fifth International Conference on Analysis of Discontinuous Deformation,</I> pages 171-180. A. A. Balkema, Abingdon. <P> Y. Zaslavsky and A. Shapira and A. A. Arzi. <B>Earthquake site response on hard rock --- empirical study.</B> 2002. in <I>Stability of Rock Structures---Proceedings of the Fifth International Conference on Analysis of Discontinuous Deformation,</I> pages 133-144. A. A. Balkema, Abingdon. <P> <HR> <ADDRESS><CENTER><A HREF="http://www.litech.org/~wkiri/bib2html/">doolin</A>< Email: <A HREF="mailto:do...@li....">do...@li....</A> ></ADDRESS> </BODY> </HTML> |
From: David M. D. <do...@us...> - 2006-06-12 15:58:26
|
Update of /cvsroot/dda/htdocs/refs In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv25241 Added Files: icadd4.html Log Message: Start of icadd html files. --- NEW FILE: icadd4.html --- <HTML><HEAD> <TITLE>doolin's Bibliography</TITLE> </HEAD> <BODY BGCOLOR=#FFFFFF> <CENTER><FONT SIZE=+1> doolin : Bibliography<BR></FONT> <I>Automatically generated from a bibfile<BR> If you notice any errors or broken links, please let me know:<BR><A HREF="mailto:do...@li....">do...@li....</A></I><P> </CENTER><P> <HR> <!-- Table of contents --> <CENTER> <TABLE CELLPADDING=5><TR><TD ALIGN=LEFT><FONT SIZE=+2><B>Topics:</B></FONT></TD> <TD><TABLE CELLPADDING=10> </TABLE></TD></TR></TABLE></CENTER><P><HR> K. Bagi and I. Bojtar. <B>Different Microstructural Strain Tensors for Granular Assemblies.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 261-270. University of Glasgow. <P> V. Balden and F. Scheele and G. Nurick. <B>Discontinuous Deformation Analysis in Ball Milling.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 337-348. University of Glasgow. <P> N. Bi'cani'c and C. Stirling. <B>DDA analysis of the Couplet/Heyman Minimum Thickness Arch Problem.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 165-170. University of Glasgow. <P> G. Chen and K. Zen and Y. Ohnishi and K. Kasama. <B>Extensions to Manifold Method and Its Application.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 439-450. University of Glasgow. <P> G. Couples and S. Bourlange and P. Bartolome and H. Lewis. <B>Grain Cracking, Grain Sliding and Volumetric Strains in Deforming Sandstone --- DDA Simulations of the Behavior of Porous, Granular Materials.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 159-164. University of Glasgow. <P> G. A. D'Adetta and E. Ramm and F. Kun. <B>Fracture Simulations of Cohesive Frictional Materials by Discrete Element Models.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 135-158. University of Glasgow. <P> C. Davie and N. Bi'cani'c. <B>Hydraulic Fracturing with Lattice Models.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 401-406. University of Glasgow. <P> S. Diebels and W. Ehlers and T. Micheltisch. <B>From disconinuous to Continuous Modelling of Granular Materials.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 251-260. University of Glasgow. <P> E. Dimnet and M. Fremond. <B>Evolution of Systems Made of Rigid Bodies.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 389-390. University of Glasgow. <P> J. Dvornik and D. Lazarevi'c. <B>Selective Time Steps in Predictor/Corrector Methods Applied to Discrete Dynamic Models of Granular Assemblies.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 193-202. University of Glasgow. <P> J. Dvornik and D. Lazerevi'c. <B>Reconnaissance of Vaults and Domes in Granular Material.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 293-299. University of Glasgow. <P> Y. T. Feng and D. R. J. Owen. <B>A Spatial Digital Tree Based Contact Detection Algorithm.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 221-238. University of Glasgow. <P> Y. T. Feng and K. Han and D. R. J. Owen. <B>Filling Domains with Disks.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 239-250. University of Glasgow. <P> K. Fresl. <B>Domain Analysis for the Programming Library Meshless Methods in Fracturing Solids.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 171-192. University of Glasgow. <P> J. Goddard. <B>Delauney Triangulation of Granular Media.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 271-280. University of Glasgow. <P> L. Jendele and V. Cervenka and V. Saoma and R. Pukl. <B>On the Choice between discrete or smeared approach in practical structural FE analyses of concrete structures.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 203-220. University of Glasgow. <P> T. Ishikawa and Y. Ohnishi. <B>A Study of Time Dependency of Granular Materials with DDA.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 271-280. University of Glasgow. <P> J. S. Lin and C. Y. Koo and J. C. Chern. <B>A Simulation of the Process of Slope Failure.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 461-472. University of Glasgow. <P> J. S. Lin and R. M. Al-Zahrani. <B>A Coupled DDA and Boundary Element Analysis.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 379-388. University of Glasgow. <P> M. Lu and B. Bostrom and G. Svano. <B>Hydraulic Fracturing Simulation with Numerical Manifold Method.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 391-400. University of Glasgow. <P> M. M. MacLaughlin and R. D. Langston. <B>Discrete Element Analysis of a Mine Stope in Blocky Rock: A comparison study of DDA and UDEC.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 111-120. University of Glasgow. <P> A. McBride and F. Scheele. <B>Investigation of Discontinuous Deformation Analysis Using Physical Laboratory Models.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 73-82. University of Glasgow. <P> M. Miyata and T. Sugano and G. G. W. Mustoe M. Nakagawa. <B>Study of Constant Force Distributions on the Bottom Plate of a Caisson resting on Rubble Rock Foundation.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 83-96. University of Glasgow. <P> A. Munjiza and J. P. Latham and N. W. M. John. <B>Transient Motion of Irregular 3D Discrete Elements.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 23-34. University of Glasgow. <P> Y. Ohnishi and H. Ohtsu and S. Nishiyama and T. Koyama and J. H. Wu. <B>Deformation Analysis Considering Water Effect by Manifold Method.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 47-62. University of Glasgow. <P> Y. Ohnishi and H. Niida and M. Ryu and G. Xiurun. <B>An Application of Key Block Analysis to Large Section Tunnel Excavation.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 357-366. University of Glasgow. <P> C. O'Sullivan and J. D. Bray. <B>A Comparative Evaluation of Two Approaches to Discrete Element Modelling Particulate Media.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 97-110. University of Glasgow. <P> D. R. J. Owen and Y. T. Feng. <B>Parallel Processing Strategies for Particulates and Multi-fracturing solids.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 299-314. University of Glasgow. <P> E. Perkins and J. Williams. <B>CGrid: Neighbor Searching for Many Body Simulation.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 427-438. University of Glasgow. <P> D. P. Roberts. <B>The Influence of Tunnel Shape on Damage and Fracture Propagation at Ultra Depth.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 35-46. University of Glasgow. <P> M. Rouainia and C. Pearce and N. Bi'cani'c. <B>HYDRO-DDA Modelling of Fractured Mudrock Seals.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 413-424. University of Glasgow. <P> T. Sasaki and Y. Ohnishi. <B>Analysis of the Discontinuous Rock Mass by four node iso-parametric Manifold Method.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 369-378. University of Glasgow. <P> E. J. Sellers. <B>Modelling of Continuum to Discontinuum Transitions for Deep Level Mining.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 63-73. University of Glasgow. <P> G. H. Shi. <B>Three Dimensional DIscontinuous Deformation Analysis.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 1-22. University of Glasgow. <P> T. Shimauchi and N. Sakai and Y. Ohnishi. <B>Fundamental Study of Mechanical Behaviors of Rockfalls by Imaging Analysis.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 473-482. University of Glasgow. <P> T. Sugano and M. Miyata and M. Nakagawa and G. G. W. Mustoe. <B>Effects of Small Particles on the Shear Strength of a Particulate System of Binary Mixtures.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 49-356. University of Glasgow. <P> Y. Sun and S. Miki. <B>A Study on Coupling Calculation of Manifold Method and Saturated-Unsaturated Flow Analysis.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 407-412. University of Glasgow. <P> H. S. Tien and S. G. Paikowsky. <B>The Arching Mechanism on the Micro Level Utilizing Photoelastic Particles.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 317-336. University of Glasgow. <P> J. van Mier and G. Lilliu. <B>Three Dimensional Lattice Model for Fracture Analysis of Particle Composites.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 121-134. University of Glasgow. <P> G. X. Wang and W. Shiulin and Z. Guang and G. Xiurun. <B>Two Extensions to Key Theory.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 367-368. University of Glasgow. <P> G. N. Wells and L. J. Sluys and R. de Boorst. <B>A new Method for simulating Discontinuities using finite elements.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 451-460. University of Glasgow. <P> J. R. Williams and E. Perkins and B. Cook and D. Preece. <B>An Educational Simulator for Multibody Physics.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 473-494. University of Glasgow. <P> G. X. Zhang and G. X. Li and Y. Sugiura and H. Hasegawa. <B>Simulation of Granular Materials by Discontinuous Deformation Analysis.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 315. University of Glasgow. <P> G. X. Zhang and X. F. Wu and Y. Sugiura and H. Hasegawa. <B>Coupled Hydro-mechanical Analysis of Jointed Rock Masses by Manifold Method.</B> 2001. in <I>Proceedings of the Fourth International Conference on Analysis of Discontinuous Deformation,</I> pages 425. University of Glasgow. <P> <HR> <ADDRESS><CENTER><A HREF="http://www.litech.org/~wkiri/bib2html/">doolin</A>< Email: <A HREF="mailto:do...@li....">do...@li....</A> ></ADDRESS> </BODY> </HTML> |
From: David M. D. <do...@us...> - 2006-06-12 15:58:05
|
Update of /cvsroot/dda/htdocs/refs In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv24828 Added Files: Makefile icadd3.html Log Message: Start of icadd html files. --- NEW FILE: Makefile --- # Stub for handling various tasks in this directory. --- NEW FILE: icadd3.html --- <HTML><HEAD> <TITLE>doolin's Bibliography</TITLE> </HEAD> <BODY BGCOLOR=#FFFFFF> <CENTER><FONT SIZE=+1> doolin : Bibliography<BR></FONT> <I>Automatically generated from a bibfile<BR> If you notice any errors or broken links, please let me know:<BR><A HREF="mailto:do...@li....">do...@li....</A></I><P> </CENTER><P> <HR> <!-- Table of contents --> <CENTER> <TABLE CELLPADDING=5><TR><TD ALIGN=LEFT><FONT SIZE=+2><B>Topics:</B></FONT></TD> <TD><TABLE CELLPADDING=10> </TABLE></TD></TR></TABLE></CENTER><P><HR> G. Chen and Y. Ohnishi. <B>A non-linear model for discontinuities in DDA.</B> 1999. in <I>ICADD-3: Third International Conference on Analysis of Discontinuous Deformation---From theory to practice,</I> pages 57-66. American Rock Mechanics Association. <P> G. Chen and Y. Ohnishi. <B>Practical computing formulas of simplex integration.</B> 1999. in <I>ICADD-3: Third International Conference on Analysis of Discontinuous Deformation---From theory to practice,</I> pages 75-84. American Rock Mechanics Association. <P> D. Clatworthy and F. Scheele. <B>A method of sub-meshing in Discontinuous Deformation Analysis DDA.</B> 1999. in <I>ICADD-3: Third International Conference on Analysis of Discontinuous Deformation---From theory to practice,</I> pages 85-96. American Rock Mechanics Association. <P> Y. H. Hatzor. <B>The Voussoir beam reaction curve.</B> 1999. in <I>ICADD-3: Third International Conference on Analysis of Discontinuous Deformation---From theory to practice,</I> pages 117-126. American Rock Mechanics Association. <P> T. Ishikawa and Y. Ohnishi. <B>Analysis of cyclic plastic deformation of railroad ballast by DDA.</B> 1999. in <I>ICADD-3: Third International Conference on Analysis of Discontinuous Deformation---From theory to practice,</I> pages 107-116. American Rock Mechanics Association. <P> J. T. Kottenstette. <B>DDA analysis of the RCC modification for Pueblo Dam.</B> 1999. in <I>ICADD-3: Third International Conference on Analysis of Discontinuous Deformation---From theory to practice,</I> pages 127-132. American Rock Mechanics Association. <P> H. K. Law and I. P. Lam. <B>Applications of key block theory and DDA at Yerba Buena Island tunnel portals under earthquake loading.</B> 1999. in <I>ICADD-3: Third International Conference on Analysis of Discontinuous Deformation---From theory to practice,</I> pages 181-192. American Rock Mechanics Association. <P> C. T. Lin and S. Ouyang and C.-T. Huang and C. C. Chen and P. T. H. Huang and C.-C. Lee and J. Liu. <B>Modeling excavation induced response of jointed rock using DDA.</B> 1999. in <I>ICADD-3: Third International Conference on Analysis of Discontinuous Deformation---From theory to practice,</I> pages 159-170. American Rock Mechanics Association. <P> J.-S. Lin and C.-Y. Koo and J.-C. Chern. <B>Manifold method analysis of rock masses containing joints of two different scales.</B> 1999. in <I>ICADD-3: Third International Conference on Analysis of Discontinuous Deformation---From theory to practice,</I> pages 231-242. American Rock Mechanics Association. <P> M. Y. Ma. <B>Development of Discontinuous Deformation Analysis: the first 10 years (1986-1996).</B> 1999. in <I>ICADD-3: Third International Conference on Analysis of Discontinuous Deformation---From theory to practice,</I> pages 17-32. American Rock Mechanics Association. <P> M. M. MacLaughlin and N. Sitar. <B>A gravity turn-on routine for DDA.</B> 1999. in <I>ICADD-3: Third International Conference on Analysis of Discontinuous Deformation---From theory to practice,</I> pages 65-74. American Rock Mechanics Association. <P> Y. Ohnishi and G. Chen and M. Ogawa and T. Itoh and T. Nakai. <B>Copmarison between Physical and Manifold Method models of discontinuous rock masses.</B> 1999. in <I>ICADD-3: Third International Conference on Analysis of Discontinuous Deformation---From theory to practice,</I> pages 33-46. American Rock Mechanics Association. <P> Y. Ohnishi and M. Tanaka and T. Koyama and K. Mutoh. <B>Manifold method in saturated-unsaturated unsteady groundwater flow analysis.</B> 1999. in <I>ICADD-3: Third International Conference on Analysis of Discontinuous Deformation---From theory to practice,</I> pages 221-230. American Rock Mechanics Association. <P> C. Pearce and N. Bicanic and A. Thavalingam and Z. H. Liao. <B>On the DDA framework for modelling concrete fracture.</B> 1999. in <I>ICADD-3: Third International Conference on Analysis of Discontinuous Deformation---From theory to practice,</I> pages 133-140. American Rock Mechanics Association. <P> J.-M. Pei. <B>Method of stability analysis of a Dam-Foundation plant system.</B> 1999. in <I>ICADD-3: Third International Conference on Analysis of Discontinuous Deformation---From theory to practice,</I> pages 97-106. American Rock Mechanics Association. <P> G.-H. Shi. <B>Applications of Discontinuous Deformation Analysis and Manifold Method.</B> 1999. in <I>ICADD-3: Third International Conference on Analysis of Discontinuous Deformation---From theory to practice,</I> pages 3-16. American Rock Mechanics Association. <P> C. Shih and A. Altschaeffl and E. C. Ting. <B>Soil and rock analysis by mechanics of multiple continuous bodies.</B> 1999. in <I>ICADD-3: Third International Conference on Analysis of Discontinuous Deformation---From theory to practice,</I> pages 253-262. American Rock Mechanics Association. <P> K. Shyu and X. Wang and C.-T. Chang. <B>Dynamic behaviors in discontinuous elastic media using DDA.</B> 1999. in <I>ICADD-3: Third International Conference on Analysis of Discontinuous Deformation---From theory to practice,</I> pages 243-252. American Rock Mechanics Association. <P> C.-Y. Wang and C.-C. Wang and J. Sheng. <B>An efficient adaptive skyline solver for contact dynamics in discrete body systems.</B> 1999. in <I>ICADD-3: Third International Conference on Analysis of Discontinuous Deformation---From theory to practice,</I> pages 47-56. American Rock Mechanics Association. <P> S. Wang and X. Ge and G. Zhang. <B>Manifold method with complete first order displacement function on physical cover.</B> 1999. in <I>ICADD-3: Third International Conference on Analysis of Discontinuous Deformation---From theory to practice,</I> pages 193-202. American Rock Mechanics Association. <P> S. Wang and X. Ge. <B>Manifold method with four physical covers forming an element and its application.</B> 1999. in <I>ICADD-3: Third International Conference on Analysis of Discontinuous Deformation---From theory to practice,</I> pages 203-210. American Rock Mechanics Association. <P> X. Wang and K. Shyu and C.-T. Chang and D. Zheng. <B>On the methodology of numerical etching.</B> 1999. in <I>ICADD-3: Third International Conference on Analysis of Discontinuous Deformation---From theory to practice,</I> pages 151-158. American Rock Mechanics Association. <P> M. R. Yeung and S. C. Blair. <B>Analysis of large block test data using DDA method.</B> 1999. in <I>ICADD-3: Third International Conference on Analysis of Discontinuous Deformation---From theory to practice,</I> pages 141-150. American Rock Mechanics Association. <P> G.-X. Zhang and Y. Sugiura and K. Saito. <B>Application of manifold method to jointed dam foundation.</B> 1999. in <I>ICADD-3: Third International Conference on Analysis of Discontinuous Deformation---From theory to practice,</I> pages 211-220. American Rock Mechanics Association. <P> G.-X. Zhang and Y. Sugiura and H. Hasegawa. <B>Crack propogation by manifold and boundary element method.</B> 1999. in <I>ICADD-3: Third International Conference on Analysis of Discontinuous Deformation---From theory to practice,</I> pages 273-282. American Rock Mechanics Association. <P> W. Zhou and X. Kuo and R. Yang. <B>Crack propogation using manifold method coupled with element free method.</B> 1999. in <I>ICADD-3: Third International Conference on Analysis of Discontinuous Deformation---From theory to practice,</I> pages 283-289. American Rock Mechanics Association. <P> W. Zhu and Q. Zhang and L. Jing. <B>Stability analysis of the ship-lock slopes of the Three Gorges project by three-dimensional FEM and DEM techniques.</B> 1999. in <I>ICADD-3: Third International Conference on Analysis of Discontinuous Deformation---From theory to practice,</I> pages 263-272. American Rock Mechanics Association. <P> <HR> <ADDRESS><CENTER><A HREF="http://www.litech.org/~wkiri/bib2html/">doolin</A>< Email: <A HREF="mailto:do...@li....">do...@li....</A> ></ADDRESS> </BODY> </HTML> |
From: David M. D. <do...@us...> - 2006-06-12 15:57:41
|
Update of /cvsroot/dda/htdocs/refs In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv24710 Added Files: icadd2.html Log Message: Start of icadd html files. --- NEW FILE: icadd2.html --- <HTML><HEAD> <TITLE>doolin's Bibliography</TITLE> </HEAD> <BODY BGCOLOR=#FFFFFF> <CENTER><FONT SIZE=+1> doolin : Bibliography<BR></FONT> <I>Automatically generated from a bibfile<BR> If you notice any errors or broken links, please let me know:<BR><A HREF="mailto:do...@li....">do...@li....</A></I><P> </CENTER><P> <HR> <!-- Table of contents --> <CENTER> <TABLE CELLPADDING=5><TR><TD ALIGN=LEFT><FONT SIZE=+2><B>Topics:</B></FONT></TD> <TD><TABLE CELLPADDING=10> <TR><TD><A HREF="#topic0"> ICADD 2</A></TD> <TD></TD><TD></TD></TR> </TABLE></TD></TR></TABLE></CENTER><P><HR> <A NAME=topic0></A> <HR><H3>ICADD 2</H3> A. D. Alexeev and V. N. Revva and Y. B. Gryadushchi and A. N. Kabanov. <B>Study of mechanism of destruction of rock with a discrete inhomogeneity.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 448-450. Japan Institute of Systems Research, Kyoto, Japan. <P> B. Amadei and J. L. Wibowo. <B>Applicability of existing models to predict the behavior of rock joints under different boundary conditions.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 36-106. Japan Institute of Systems Research, Kyoto, Japan. <P> T. Asano and M. Nishimura and H. Masui and S. Kameda. <B>Analysis of earth pressure in trap door test by the distinct element method.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 343-350. Japan Institute of Systems Research, Kyoto, Japan. <P> G. Chen and Y. Ohnishi and T. Ito. <B>Development of high order manifold method.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 132-154. Japan Institute of Systems Research, Kyoto, Japan. <P> M. H. Chen and C.-Y. Wang and J. Shen. <B>Static contact problems of discrete systems solved by the diffuse element method.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 323-342. Japan Institute of Systems Research, Kyoto, Japan. <P> H. Chikahisa and K. Kobayashi and K. Matsumoto and M. Tsutsui and Y. Ohnishi. <B>Geological survey for DDA and its application to a large rock cavern.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 263-273. Japan Institute of Systems Research, Kyoto, Japan. <P> Y.-J. Chiou and Q. Yang and X. Kuo. <B>Crack propogation using manifold method.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 298-308. Japan Institute of Systems Research, Kyoto, Japan. <P> X. Deng. <B>Dynamic deformation and stress field analysis of fault.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 211-217. Japan Institute of Systems Research, Kyoto, Japan. <P> T. Esaki and S. Du and Y. Jiang and Y. Wada and J. Sun. <B>Effect of asperity damage on the shear behavior of irregular rock joints.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 459-464. Japan Institute of Systems Research, Kyoto, Japan. <P> T. Fujikawa and T. Aoki and T. Hirokawa. <B>Research and development of a new device for discontinuities site-survey.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 465-471. Japan Institute of Systems Research, Kyoto, Japan. <P> M. Hakuno. <B>Simulation of 3-D concrete-frame collapse due to dynamic loading.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 125-131. Japan Institute of Systems Research, Kyoto, Japan. <P> T. Ishikawa and Y. Ohnishi and A. Namura. <B>DDA applied to deformation analysis of coarse granular materials (ballast).</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 253-262. Japan Institute of Systems Research, Kyoto, Japan. <P> T.-C. Ke. <B>Application of DDA to simulate fracture propogation in solid.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 155-185. Japan Institute of Systems Research, Kyoto, Japan. <P> H. Kinashi and S. Amano. <B>Numerical study on support effects of cable bolt in discontinuous rock mass.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 351-358. Japan Institute of Systems Research, Kyoto, Japan. <P> H. Kitoh and N. Takeuchi and M. Ueda and H. Higuchi and A. Kambayashi and M. Tomida. <B>Size effect analysis of plain concrete beams by using RBSM.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 373-382. Japan Institute of Systems Research, Kyoto, Japan. <P> C.-Y. Koo and J. C. Chern. <B>Modeling of progressive fracture in jointed rock by DDA method.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 186-201. Japan Institute of Systems Research, Kyoto, Japan. <P> M. Kosugi and Y. Onodera and A. Tamai and W. Wang. <B>Characterization and behavior evaluation of jointed rock mass in tunneling.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 472-480. Japan Institute of Systems Research, Kyoto, Japan. <P> J.-S. Lin and S. Chen. <B>Soil slope stability analysis using DDA.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 238-244. Japan Institute of Systems Research, Kyoto, Japan. <P> J.-S. Lin and R. Al-Zahrani and A. Munjiza and D.-H. Lee. <B>Large displacement and finite strain DDA: an implementation and physical verification.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 245-252. Japan Institute of Systems Research, Kyoto, Japan. <P> A. Munjiza and G. J. Huang and J.-S. Lin. <B>Combined finite/discrete element method --- improved contact solutions.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 365-372. Japan Institute of Systems Research, Kyoto, Japan. <P> H. Ohtsubo and K. Suzuki and K. Terada and K. Nakanashi. <B>Utilization of finite covers in the manifold method for accuracy control.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 317-322. Japan Institute of Systems Research, Kyoto, Japan. <P> T. Sasaki and S. Morikawa and D. Ishii and Y. Ohnishi. <B>Elastic-plastic analysis of jointed rock models by manifold method.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 309-316. Japan Institute of Systems Research, Kyoto, Japan. <P> G. H. Shi. <B>Numerical manifold method.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 1-35. Japan Institute of Systems Research, Kyoto, Japan. <P> X. Shi and D. Li. <B>The movement of rock joint triggered by water diffusion.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 442-447. Japan Institute of Systems Research, Kyoto, Japan. <P> C. Shih and Y.-K. Wang and E. C. Ting. <B>Behavior and analysis of deformable continuous media containing rigid discontinuity bodies.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 391-418. Japan Institute of Systems Research, Kyoto, Japan. <P> M. Shinji. <B>Viscosity coefficient of the rockfall simulation.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 201-210. Japan Institute of Systems Research, Kyoto, Japan. <P> K. K. Shyu and C.-T. Chang and M. Reza Salami. <B>Tunnel engineering applications using discontinuous deformation analysis with finite element mesh.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 218-237. Japan Institute of Systems Research, Kyoto, Japan. <P> H. Takeda and M. Kusabuka and N. Takeuchi and K. Sato. <B>New finite elements for the analysis of progressive discontinuity problems based on the finite volume concepts.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation</I>. Japan Institute of Systems Research, Kyoto, Japan. <P> H. Takeda and M. Kusabuka and H. Tanaka and N. Kurokawa. <B>Finite element method for contact problem and its application to sheild tunnel excavation analysis.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 432-441. Japan Institute of Systems Research, Kyoto, Japan. <P> N. Takeuchi and T. Kawai. <B>Devlopment of discrete limit analysis and its application to the solid mechanics.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 383-390. Japan Institute of Systems Research, Kyoto, Japan. <P> C. P. Wang and J. Sheng and C.-Y. Wang and C. L. Lee. <B>Selections of contact spring stiffness values in the numerical analysis for the system of rigid disks.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 451-458. Japan Institute of Systems Research, Kyoto, Japan. <P> C. Y. Wang and C.-F. Wang and J. Sheng. <B>A packing generation scheme for the granular assemblies with 3Dellipsoidal particles.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 107-124. Japan Institute of Systems Research, Kyoto, Japan. <P> J. Yoshida. <B>A static model of granular materials in a bin using distinct element analysis.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 359-364. Japan Institute of Systems Research, Kyoto, Japan. <P> G. X. Zhang and Y. Shugiura and H. Hasegawa. <B>Crack propogation and thermal fracture analysis by manifold method.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 282-291. Japan Institute of Systems Research, Kyoto, Japan. <P> W. Zhou and Q. Yang and X. Kuo. <B>Manifold methods and its application to engineering.</B> 1997. in <I>Proceedings of the Second International Conference on Analysis of Discontinuous Deformation,</I> pages 274-281. Japan Institute of Systems Research, Kyoto, Japan. <P> <HR> <ADDRESS><CENTER><A HREF="http://www.litech.org/~wkiri/bib2html/">doolin</A>< Email: <A HREF="mailto:do...@li....">do...@li....</A> ></ADDRESS> </BODY> </HTML> |
From: David M. D. <do...@us...> - 2006-06-12 15:57:14
|
Update of /cvsroot/dda/htdocs/refs In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv24576 Added Files: icadd1.html Log Message: Start of icadd html files. --- NEW FILE: icadd1.html --- <HTML><HEAD> <TITLE>doolin's Bibliography</TITLE> </HEAD> <BODY BGCOLOR=#FFFFFF> <CENTER><FONT SIZE=+1> doolin : Bibliography<BR></FONT> <I>Automatically generated from a bibfile<BR> If you notice any errors or broken links, please let me know:<BR><A HREF="mailto:do...@li....">do...@li....</A></I><P> </CENTER><P> <HR> <!-- Table of contents --> <CENTER> <TABLE CELLPADDING=5><TR><TD ALIGN=LEFT><FONT SIZE=+2><B>Topics:</B></FONT></TD> <TD><TABLE CELLPADDING=10> </TABLE></TD></TR></TABLE></CENTER><P><HR> <HR> <ADDRESS><CENTER><A HREF="http://www.litech.org/~wkiri/bib2html/">doolin</A>< Email: <A HREF="mailto:do...@li....">do...@li....</A> ></ADDRESS> </BODY> </HTML> |
From: David M. D. <do...@us...> - 2006-06-12 15:55:49
|
Update of /cvsroot/dda/pub/bibtex In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv23685 Modified Files: icadd1.bib icadd2.bib icadd3.bib icadd4.bib icadd5.bib ifdda.bib Added Files: Makefile header.txt Log Message: Started cleaning up icadd bibtex files for conversion to html. Index: icadd4.bib =================================================================== RCS file: /cvsroot/dda/pub/bibtex/icadd4.bib,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** icadd4.bib 1 May 2006 18:03:31 -0000 1.1 --- icadd4.bib 12 Jun 2006 15:55:45 -0000 1.2 *************** *** 1,6 **** - %%% - %%% Start of complete proceedings bib file - - --- 1,2 ---- Index: icadd2.bib =================================================================== RCS file: /cvsroot/dda/pub/bibtex/icadd2.bib,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** icadd2.bib 1 May 2006 18:03:31 -0000 1.1 --- icadd2.bib 12 Jun 2006 15:55:45 -0000 1.2 *************** *** 1,9 **** - %%% - %%% Start of complete proceedings bib file ! @String{TITLE={Proceedings of the Second ! International Conference on Analysis of ! Discontinuous Deformation}} @InProceedings{alexeev:ad1997, --- 1,6 ---- ! %%% ICADD 2 %%% + @String{TITLE="Proceedings of the Second International Conference on Analysis of Discontinuous Deformation"} @InProceedings{alexeev:ad1997, Index: icadd3.bib =================================================================== RCS file: /cvsroot/dda/pub/bibtex/icadd3.bib,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** icadd3.bib 1 May 2006 18:03:31 -0000 1.1 --- icadd3.bib 12 Jun 2006 15:55:45 -0000 1.2 *************** *** 1,7 **** - %%% - %%% Start of complete proceedings bib file ! @String{TITLE= {ICADD-3: Third International Conference on Analysis ! of Discontinuous Deformation---From theory to practice}} --- 1,4 ---- ! @String{TITLE= "ICADD-3: Third International Conference on Analysis of Discontinuous Deformation---From theory to practice"} *************** *** 9,14 **** @InProceedings{chen:g1999a, author = {G. Chen and Y. Ohnishi}, ! title = {A non-linear model for ! discontinuities in {DDA}}, booktitle = TITLE, OPTcrossref = {}, --- 6,10 ---- @InProceedings{chen:g1999a, author = {G. Chen and Y. Ohnishi}, ! title = {A non-linear model for discontinuities in {DDA}}, booktitle = TITLE, OPTcrossref = {}, *************** *** 51,56 **** @InProceedings{clatworthy:d1999, author = {D. Clatworthy and F. Scheele}, ! title = {A method of sub-meshing in ! Discontinuous Deformation Analysis ({DDA})}, booktitle = TITLE, OPTcrossref = {}, --- 47,52 ---- @InProceedings{clatworthy:d1999, author = {D. Clatworthy and F. Scheele}, ! title = {A method of sub-meshing in Discontinuous ! Deformation Analysis DDA}, booktitle = TITLE, OPTcrossref = {}, Index: icadd1.bib =================================================================== RCS file: /cvsroot/dda/pub/bibtex/icadd1.bib,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** icadd1.bib 8 Jun 2006 13:37:43 -0000 1.2 --- icadd1.bib 12 Jun 2006 15:55:45 -0000 1.3 *************** *** 1,14 **** - %%% - %%% Start of complete proceedings bib file - - @String{TITLE={Proceedings of the First International - Conference on Analysis of Discontinuous Deformation}} - @InProceedings{chao:sj1995, author = {S.-J. Chao and C. S. Chang}, ! title = {Discrete element analysis for limit ! equilibrium problems in geotechnical engineering}, booktitle = TITLE, OPTcrossref = {}, --- 1,8 ---- + @String{TITLE= "Proceedings of the First International Conference on Analysis of Discontinuous Deformation"} @InProceedings{chao:sj1995, author = {S.-J. Chao and C. S. Chang}, ! title = {Discrete element analysis for limit equilibrium problems in geotechnical engineering}, booktitle = TITLE, OPTcrossref = {}, *************** *** 29,33 **** } - @InProceedings{chang:cs1995, author = {C. S. Chang}, --- 23,26 ---- --- NEW FILE: header.txt --- This is stub header file for inclusion into html files emitted by bib2html. Needs the usual header information, and some sort of creative commons license. --- NEW FILE: Makefile --- # Makefile for converting bibtex files to html. html: bib2html icadd2.bib clean: rm -rf *~ Index: icadd5.bib =================================================================== RCS file: /cvsroot/dda/pub/bibtex/icadd5.bib,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** icadd5.bib 1 May 2006 18:03:31 -0000 1.1 --- icadd5.bib 12 Jun 2006 15:55:45 -0000 1.2 *************** *** 1,607 **** ! %%% ! %%% Start of complete proceedings bib file ! ! ! ! ! @InProceedings{aiqing:w2002, ! title = {Stability analysis for rock blocks ! in {T}hree {G}orges {P}roject}, ! author = {W. Aiqing and H. Zhengjia}, [...1181 lines suppressed...] ! title = {Earthquake site response on hard ! rock --- empirical study}, ! booktitle = {Stability of Rock Structures---Proceedings ! of the Fifth International Conference on Analysis of ! Discontinuous Deformation}, ! OPTcrossref = {}, ! OPTkey = {}, ! pages = {133-144}, ! year = {2002}, ! editor = {Y. H. Hatzor}, ! OPTvolume = {}, ! OPTnumber = {}, ! OPTseries = {}, ! address = {Abingdon}, ! month = {Oct. 6-10}, ! OPTorganization = {}, ! publisher = {A. A. Balkema}, ! OPTnote = {}, ! OPTannote = {} ! } Index: ifdda.bib =================================================================== RCS file: /cvsroot/dda/pub/bibtex/ifdda.bib,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ifdda.bib 1 May 2006 18:03:31 -0000 1.1 --- ifdda.bib 12 Jun 2006 15:55:45 -0000 1.2 *************** *** 1,10 **** - %%% - %%% Start of complete proceedings bib file - ! @String{IFDDATITLE = {Proceedings of the First International forum ! on Discontinuous Deformation analysis ({DDA}) and Simulations of ! Discontinuous Media, Berkeley, CA}} --- 1,5 ---- ! @String{IFDDATITLE = "Proceedings of the First International forum on Discontinuous Deformation analysis DDA and Simulations of Discontinuous Media, Berkeley, CA"} *************** *** 160,164 **** author ={X. Dong and A. Wu and F. Ren}, title ={A preliminary application of discontinuous ! deformation analysis ({DDA}) to the {T}hree {G}orges {D}am project}, booktitle = IFDDATITLE, editor = {M. R. Salami and D. Banks}, --- 155,159 ---- author ={X. Dong and A. Wu and F. Ren}, title ={A preliminary application of discontinuous ! deformation analysis {(DDA)} to the {T}hree {G}orges {D}am project}, booktitle = IFDDATITLE, editor = {M. R. Salami and D. Banks}, |