Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: toog
  • Order by date
  1. toog

    Nonlinear response of a cantilever beam

    AeroAero, Probably a dumb question, but are you using double precision in your Fortran code? Single precision FEM codes lose all significant digits for about 30+ degrees of freedom which seems to be about where you get to.
  2. toog

    Seismic Upgrade of Concrete Building

    For existing buildings, use FEMA 356. There are guidelines for the evaluation of slab-column moment frames.
  3. toog

    Problem with READing char into real variable!!!

    The floating point field width is 4, not 8, and so I think you need to change your format from f8.3 to f4.3. Acutally, I think for input the number of decimal places is subject to over-ride by the decimal point so f4.0 should also work.
  4. toog

    Date and Time in Fortran77??

    I don't think the Fortran standard had a function for date and time until Fortran90 (DATE_AND_TIME intrinsic). Some suppliers of Fortran77 had extensions for the date and time but you'll need to find it in your compiler documentation.
  5. toog

    How to write an integer value into a string with leading zeros?

    mjs84, WRITE (ans, '(a, i3.3)') chr1, val1
  6. toog

    Copying Dialog Sheets to New Workbook

    Thanks, onlyadrafter, that is helpful advice. This is the sort of tip that it would be much better to know before starting all the dialogs and coding the macros!
  7. toog

    GetOpenFilename - Excel 97 and Excel XP

    I don't know of a fix for this, I use a workaround by calling GetOpenFile for a single file select within a DO construct. I add the filename to an array each time the user presses OPEN, and continue the DO until the user presses cancel. This is okay for a small number of files, not great if...
  8. toog

    Copying Dialog Sheets to New Workbook

    Sometimes our complex workbooks become corrupt and the size increases enormously. The only solution seems to be to select all sheets and copy to a new workbook, same with macros. This is painless except for dialog type sheets where the identification number of all objects changes, for example...
  9. toog

    Elastomeric bearing for a bridge

    dilukshi, Probably a lot more than you need to know but you can download Base Isolation Design Guidelines from this site: www.holmesgroup.com/designguide Section 9.3 has some formulas for compressive stiffnes.
  10. toog

    F95 Unexpected Allocate Error

    Thanks for the response, DanTex. I don't want to spend time on a very infrequent occurrence. I just recalled the memory models on old compilers required that words started on a segment boundary and wondered whether something similar, but undocumented, occurred with F95. The fact it allocates...
  11. toog

    F95 Unexpected Allocate Error

    I'm using Lahey F95 v5.6. I have an allocate statement: ALLOCATE (xyzo (nface, 4, 3, 2)) which has never given a problem except when the value of nface is 43656. When it is this value, the program terminates. Changing the final dimension from 2 to 3 fixes the problem, a clumsy fix. Anyone...
  12. toog

    Base Isolation with Etabs

    You can download a base isolation design guide at www.holmesgroup.com/designguide.html which has a section on ETABS modelling.
Back
Top