Git Product home page Git Product logo

tecplotwrite's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

tecplotwrite's Issues

[SIGSEGV when test mod] is there any exmaple code?

when i test the mod with following code

      program main
      use tecplotwrite
      parameter(ni=10,nj=10)
      Real*8 x(ni,nj),y(ni,nj)
      Real*8 u(ni,nj),v(ni,nj)
      type(tecplotDataTemplate) :: data2Write
      
      do i = 1,ni
      do j = 1,nj
         x(i,j) = dble(i-1)/dble(ni-1)
         y(i,j) = dble(j-1)/dble(nj-1)

         u(i,j) = dble(i-1)
         v(i,j) = dble(j-1)
      enddo
      enddo
      data2Write%inunit = 10
      data2Write%datatitle = 'testmod.plt'
      data2Write%IMax = ni
      data2Write%JMax = nj
      data2Write%KMax = 1
      data2Write%Nvars = 4
      do i = 1,ni
      do j = 1,nj
            !------------ bug area ----------!
            data2Write%data(i,j,1,1) = x(i,j)
            data2Write%data(i,j,1,2) = y(i,j)
            data2Write%data(i,j,1,3) = u(i,j)
            data2Write%data(i,j,1,4) = v(i,j)
            !------------ bug area ----------!
      end do
      end do
      write(*,*) 'before Writing tecplot binary file .. '
      call tecplot_write_binary(data2Write) 
      stop
      end

how can i define the data for writing with data2Write%data, is there any exmaple code?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.