how to start with the source code

For developers writing C++, Fortran, Java, code who have questions or comments to make.

Moderators: silvia, selimgunay, Moderators

Post Reply
tangzhen
Posts: 30
Joined: Thu May 30, 2013 4:58 am
Location: HIT

how to start with the source code

Post by tangzhen »

hello everyone,i just started reading the source code of ops,but i have some problems。i was wondering which project i have to read first,i mean the main routine。thank you all。
fmk
Site Admin
Posts: 5884
Joined: Fri Jun 11, 2004 2:33 pm
Location: UC Berkeley
Contact:

Re: how to start with the source code

Post by fmk »

i suggest you start with my dissertation on the class structure.

the main procedures (one for each application) is in the SRC/tcl directories.
shehuiren
Posts: 4
Joined: Wed Sep 04, 2013 5:59 pm
Location: 兰州

Re: how to start with the source code

Post by shehuiren »

fmk wrote:
> i suggest you start with my dissertation on the class structure.
>
> the main procedures (one for each application) is in the SRC/tcl
> directories.

dear fmk;
how can i find your dissertation on the class structure,what is your dissertation's title ?
thank you very much !
fmk
Site Admin
Posts: 5884
Joined: Fri Jun 11, 2004 2:33 pm
Location: UC Berkeley
Contact:

Re: how to start with the source code

Post by fmk »

Object-oriented finite element programming: frameworks for analysis, algorithms and parallel computing
opensees.berkeley.edu/OpenSees/doc/fmkdiss.pd
shehuiren
Posts: 4
Joined: Wed Sep 04, 2013 5:59 pm
Location: 兰州

Re: how to start with the source code

Post by shehuiren »

dear,
“//static data
Matrix ShellMITC4::stiff(24,24)” The stiffness Matrixv that defined in each element is the Matrix object, but how to check the stiffness Matrix of value?
fmk
Site Admin
Posts: 5884
Joined: Fri Jun 11, 2004 2:33 pm
Location: UC Berkeley
Contact:

Re: how to start with the source code

Post by fmk »

when programming in c++ there are many ways to get at the matrix coefficients .. look at the Matrix interface in SRC/matrix/Matrix.h
Post Reply